Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SetChildVisible Method
Child view for which to set whether it is visible
Whether to display the child view
Example


In This Topic
    SetChildVisible Method
    In This Topic
    Sets whether to display the child view in a hierarchical display.
    Syntax
    'Declaration
     
    
    Public Sub SetChildVisible( _
       ByVal child As SheetView, _
       ByVal visible As Boolean _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim child As SheetView
    Dim visible As Boolean
     
    instance.SetChildVisible(child, visible)
    public void SetChildVisible( 
       SheetView child,
       bool visible
    )

    Parameters

    child
    Child view for which to set whether it is visible
    visible
    Whether to display the child view
    Remarks
    If the visible parameter is set to true and the parent row of the child view is expanded, the child view is displayed. Otherwise, the child view is not displayed.
    Example
    This example sets whether to display the child view.
    See Also