axlGetParameter
axlGetParameter(x_mainSDB t_parameterPath) =>x_parameterHandle/0
Description
Returns the database handle to the given device parameter in the setup database.
Arguments
|
Complete path to the parameter Library/Cell/View/Instance/Property |
Value Returned
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
Return to top