Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / IDataSourceSupport Interface / GetDataRowFromModelRow Method
Model row index to be converted
Example


In This Topic
    GetDataRowFromModelRow Method (IDataSourceSupport)
    In This Topic
    Converts the model row index to the data source row index.
    Syntax
    'Declaration
     
    
    Function GetDataRowFromModelRow( _
       ByVal row As Integer _
    ) As Integer
    'Usage
     
    
    Dim instance As IDataSourceSupport
    Dim row As Integer
    Dim value As Integer
     
    value = instance.GetDataRowFromModelRow(row)
    int GetDataRowFromModelRow( 
       int row
    )

    Parameters

    row
    Model row index to be converted

    Return Value

    Integer index of the row in the data source
    Example
    This example binds the model to a data set.
    See Also