GefScreen.NavHasCurScreen (read-only property)

Get whether the current screen belongs to navigation configuration
Syntax: Boolean = object.NavHasCurScreen
Description: CimView only. The IsNavigation property gets whether CimView uses navigation.

Examples

Sub GefScreen_NavHasCurScreen()
    
    Dim oCimScr As GefScreen
    Set oCimScr = CimGetScreen
    If oCimScr.NavHasCurScreen Then
    MsgBox "Current screen belongs to navigation"
    Else
    MsgBox "Current screen does not belong to navigation"
    End If
    
End Sub