Gets whether navigation is on. | |
Syntax: | Boolean = object.IsNavigation |
Description: | CimView only. The IsNavigation
property gets whether CimView uses navigation. Examples Sub GefScreen_IsNavigation() Dim oCimScr As GefScreen Set oCimScr = CimGetScreen If oCimScr.IsNavigation
Then MsgBox "Navigation is on
now" Else MsgBox "Navigation is off
now" End If End Sub |