axlGetVar
axlGetVar(x_elementt_varName) =>x_var/nil
Description
Finds a variable associated with the specified database element and returns a handle to it.
Arguments
|
Handle to the specified database element, which can be the setup database, a corner, or a history checkpoint. |
|
Value Returned
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
Return to top