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

axlGetParameter

axlGetParameter(
x_mainSDB
t_parameterPath
)
=> x_parameterHandle / 0

Description

Returns the database handle to the given device parameter in the setup database.

Arguments

x_mainSDB

Handle to the setup database.

t_parameterPath

Complete path to the parameter Library/Cell/View/Instance/Property

Value Returned

x_parameterHandle

Handle to the parameter.

0

Unsuccessful, when the parameter is not found.

Examples

The following example retrieves the handle to the specified parameter and to use that handle to delete the parameter.

s1 = axlGetWindowSession()
=> "session0"
x_mainSDB=axlGetMainSetupDB( s1 ) => 1001 axlGetParameters(x_mainSDB) ("Two_Stage_Opamp/OpAmp/schematic/M10/l" "Two_Stage_Opamp/OpAmp/schematic/M10/m") axlGetParameter(x_mainSDB "Two_Stage_Opamp/OpAmp/schematic/M10/l") => 2397 axlRemoveElement( 2397) => t

Related Topics

Working with Device Instance Parameters


Return to top
 ⠀
X