rdbShowDialog
rdbShowDialog(t_sessionName t_componentName t_dialogName t_actionName[l_options] ) =>t/nil
Description
Displays or hides the specified form associated with the Results Browser.
The specified form is displayed only when the Results Browser is already open.
Arguments
|
List of optional arguments that can be passed to the function.
This argument is relevant only when the argument t_dialogName is set to |
Value Returned
|
The specified form cannot be displayed or hidden because of an error. |
Examples
The following example opens the Select Waveform Database form.
rdbShowDialog("fnxSession0" "browser" "findResults" "show")
The following examples open the Select Waveform Database form and set the initial location to the specified directory.
rdbShowDialog("fnxSession0" "browser" "findResults" "show" list(list("pathList" "/servers/user/testCase/design/ampsim.raw")))
=> t
rdbShowDialog("fnxSession0" "browser" "findResults" "show" '(("pathList" "/servers/user/testCase/design/ampsim.raw") ))
=> t
The following example hides the Select Waveform Database form.
rdbShowDialog("fnxSession0" "browser" "findResults" "hide")
The following example opens the Export Waveforms form.
rdbShowDialog("fnxSession0" "browser" "saveAs" "show")
The following example hides the Export Waveforms form.
rdbShowDialog("fnxSession0" "browser" "saveAs" "hide")
The following example opens the Data Browser: Set Sweep Ranges form.
rdbShowDialog("fnxSession0" "browser" "sweepData" "show")
The following example hides the Data Browser: Set Sweep Ranges form.
rdbShowDialog("fnxSession0" "browser" "sweepData" "hide")
Return to top