Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetModelRowFromViewRow Method
Example


In This Topic
    GetModelRowFromViewRow Method
    In This Topic
    Gets a row index in a model for a specified row in a sheet.
    Overload List
    OverloadDescription
    Gets a row index in a model for a specified row in a sheet.  
    Example
    This example returns the index for the specified row.
    private void FpSpread1ChildViewCreated(object sender, FarPoint.Web.Spread.CreateChildViewEventArgs e)
    {
          FarPoint.Web.Spread.SheetView sv;
          sv = e.SheetView;
          int i;
          i = sv.GetModelRowFromViewRow(1);
          Response.Write("The index in the model for the specified row is " + i.ToString());
    }
    
    Private Sub FpSpread1ChildViewCreated(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateChildViewEventArgs) Handles
    FpSpread1.ChildViewCreated
          Dim sv As FarPoint.Web.Spread.SheetView
          Dim i As Integer
          sv = e.SheetView
          i = sv.GetModelRowFromViewRow(1)
          Response.Write("The index in the model for the specified row is " & i.ToString())
    End Sub
    
    See Also