Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SetRowExpandable Method
Row index
True if the row can be expanded; false otherwise
Example


In This Topic
    SetRowExpandable Method
    In This Topic
    Sets whether the row on this sheet can be expanded to show the child view in the hierarchical display.
    Syntax
    'Declaration
     
    
    Public Sub SetRowExpandable( _
       ByVal row As Integer, _
       ByVal expandable As Boolean _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim expandable As Boolean
     
    instance.SetRowExpandable(row, expandable)
    public void SetRowExpandable( 
       int row,
       bool expandable
    )

    Parameters

    row
    Row index
    expandable
    True if the row can be expanded; false otherwise
    Exceptions
    ExceptionDescription
    Specified row is out of range; must be between 0 and the number of rows
    Example
    This example sets the first row of a hierarchy to not be expandable.
    See Also