Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlSetAllVarsDisabled

axlSetAllVarsDisabled(
x_mainSDB 
g_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

x_mainSDB

Setup database handle.

g_enableStatus

Option for setting the selection status.

  • 0: Selects the Global Variables check box.
  • 1: Deselects the Global Variables check box.

Value Returned

t

Successful select or deselect operation.

nil

Unsuccessful select or deselect operation.

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