Load a new nagivation configuration file, or turn off navigation | |
Syntax: | Boolean = object.NavLoad ( startNodePath ) |
Parameters: |
startNodePath As String -
|
Description: | CimView only. Load a navigation
configuration specified by file, and start from the path specified
by startNodePath. It can also be used to turn off the current
navigation by calling it with empty file name and
startNodePath. Examples Sub NavLoadNoChildBar( cfgFile As String, startPath As
String) Dim oCimScr As GefScreen Set oCimScr = CimGetScreen oCimScr.NavChildBarVisible =
False oCimScr.NavLoad cfgFile,
startPath End Sub |