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

axlGetVar

axlGetVar( 
x_element 
t_varName 
) 
=> x_var / nil 

Description

Finds a variable associated with the specified database element and returns a handle to it.

Arguments

x_element

Handle to the specified database element, which can be the setup database, a corner, or a history checkpoint.

t_varName

Variable name.

Value Returned

x_var

Handle to the specified variable.

nil

The command was unsuccessful.

Examples

The following example shows how to use the axlGetVar function to get the handle to a particular variable and then disable it.

s1 = axlGetWindowSession()
=> "session0"

x_mainSDB = axlGetMainSetupDB( s1 )
=> 1001

axlGetVars(x_mainSDB)
=> (1862 
    ("IREF" "SIDDQ" "VDD" "VIN_CM" "testVar"))
var1 = axlGetVar(x_mainSDB "testVar") => 1952 axlRemoveElement(var1)
=> t

Related Topics

axlGetWindowSession

axlGetMainSetupDB

axlGetVars


Return to top
 ⠀
X