axlSetAllVarsDisabled
axlSetAllVarsDisabled(x_mainSDBg_enableStatus) =>t/ nil
Description
Sets the selection status of the option to include the global variables in simulations. 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
Examples
The following example selects the Global Variables check box in the Data View assistant pane.
s1 = axlGetWindowSession()
=> "session0"
x_mainSDB=axlGetMainSetupDB("s1)
=> 1001
axlSetAllVarsDisabled(x_mainSDB 0)
=> t
The following example clears the Global Variables check box in the Data View assistant pane.
s1 = axlGetWindowSession()
=> "session0"
x_mainSDB=axlGetMainSetupDB("s1) => 1001 axlSetAllVarsDisabled(x_mainSDB 1) => t
Return to top