GefScreen.NavToSibling (method)

Navigate to a sibling of current navigation node
Syntax: Boolean = object.NavToSibling ( siblingName )
Parameters:
siblingName As String -
Description: CimView only. Navigates to a sibling node specified by the node name.

Examples

Sub GefScreen_NavToSibling(nodeName as String)
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    oCimStr.NavToSibling nodeName
    
End Sub