Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SetRowExpandable Method
Row index
Whether the row can be expanded to show a child view


In This Topic
    SetRowExpandable Method
    In This Topic
    Sets whether the row on this sheet can be expanded to show a child view in a 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
    Whether the row can be expanded to show a child view
    Exceptions
    ExceptionDescription
    Specified row index is out of range; must be between 0 and the total number of rows
    See Also