Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetRowExpandable Method
Row index
Example


In This Topic
    GetRowExpandable Method
    In This Topic
    Gets whether the row on this sheet is expandable in the hierarchical display.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetRowExpandable( _
       ByVal row As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim value As Boolean
     
    value = instance.GetRowExpandable(row)
    public virtual bool GetRowExpandable( 
       int row
    )

    Parameters

    row
    Row index

    Return Value

    true if row is expandable; false otherwise
    Exceptions
    ExceptionDescription
    Specified row is out of range; must be between 0 and the number of rows
    Example
    This example returns if the specified row can be expanded.
    See Also