axlGetAllVarsDisabled
axlGetAllVarsDisabled(
x_mainSDB
)
=> t / nil
Description
Returns the status for inclusion of the global variables in a simulation. In the GUI, this is the selection status of the Global Variables check box in the Data View assistant pane of ADE Assembler.
Arguments
Value Returned
|
The Global Variables check box in the Data View assistant pane is not selected. |
|
|
The Global Variables check box in the Data View assistant pane is selected. |
Examples
The following example returns the status of the option to include the global variables in simulations.
s1 = axlGetWindowSession()
=> "session0"
x_mainSDB=axlGetMainSetupDB(s1)
=> 1001
axlGetAllVarsDisabled(x_mainSDB)
=> nil
Here, nil implies that the option to include the global variables in simulations is enabled.
Return to top