Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetChildVisible Method
Child view for which to return whether it is visible
Example


In This Topic
    GetChildVisible Method
    In This Topic
    Gets whether the child view is displayed in a hierarchical display.
    Syntax
    'Declaration
     
    
    Public Function GetChildVisible( _
       ByVal child As SheetView _
    ) As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim child As SheetView
    Dim value As Boolean
     
    value = instance.GetChildVisible(child)
    public bool GetChildVisible( 
       SheetView child
    )

    Parameters

    child
    Child view for which to return whether it is visible

    Return Value

    true if the child is displayed; otherwise, false
    Remarks
    If this method returns 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 returns if the specified child view is visible.
    See Also