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


In This Topic
    IsRowUsed Method (GroupDataModel)
    In This Topic
    Determines whether the specified row has data (is not empty).
    Syntax
    'Declaration
     
    
    Public Overrides Function IsRowUsed( _
       ByVal row As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As GroupDataModel
    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

    Boolean: true if the row is used; false otherwise
    Example
    This example returns if the row is used in the model.
    See Also