Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

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

t_sessionName

Name of the session.

t_componentName

Name of the component.

The value of this argument is always "browser".

t_dialogName

Name of the form associated with the Results Browser.

Valid values are as follows:

  • findResults: Displays or hides the Select Waveform Database form.
  • saveAs: Displays or hides the Export Waveforms form.
  • sweepData: Displays or hides the Data Browser: Set Sweep Ranges form.

t_actionName

Name of the action to be performed.

Valid values are as follows:

  • show: Displays the specified form.
  • hide: Hides the specified form.

l_options

List of optional arguments that can be passed to the function.

This argument is relevant only when the argument t_dialogName is set to findResults.

For example:

  • list(list("pathList" "/servers/user/testCase/design/ampsim.raw"))
  • '(("pathList" "/servers/user/testCase/design/ampsim.raw"))

Value Returned

t

The specified form is displayed or hidden.

nil

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
 ⠀
X