axlGetVarValue
axlGetVarValue(x_varHandle) =>t_value/nil
Description
Returns value of the given variable.
Arguments
Value Returned
Examples
The following example shows how to get the value of a global variable VDD.
s1 = axlGetWindowSession() "session0" x_mainSDB=axlGetMainSetupDB( s1 ) =>1001 axlGetVars(x_mainSDB) =>(15615 ("IREF" "VDD" "VIN_CM" "_sim_time" "SIDDQ")
)
v2=axlGetVar(x_mainSDB "VDD") =>15622 v2=axlGetVarValue(v2) =>"1.1 1.2"
Related Topics
Return to top