Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / DefaultSheetDataModel Class / IsRowUsed Method
Index of row to check
Example


In This Topic
    IsRowUsed Method (DefaultSheetDataModel)
    In This Topic
    Determines whether the specified row is not empty.
    Syntax
    'Declaration
     
    
    Public Overrides Function IsRowUsed( _
       ByVal row As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As DefaultSheetDataModel
    Dim row As Integer
    Dim value As Boolean
     
    value = instance.IsRowUsed(row)
    public override bool IsRowUsed( 
       int row
    )

    Parameters

    row
    Index of row to check

    Return Value

    true if the row contains data; false otherwise
    Example
    This example binds the DefaultSheetDataModel to a DataTable and the values of the IsColumnBound, IsEditable, IsEmpty and IsRowUsed are returned to a list box.
    See Also