axlSetParameter
axlSetParameter(
x_mainSDB
t_parameterPath
t_value
)
=> t / nil
Description
Sets a value for the specified device parameter.
Arguments
|
Complete path to the parameter Library/Cell/View/Instance/Property |
|
Value Returned
Examples
The following example sets a value for parameter m of device M4 in the given database.
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" "Two_Stage_Opamp/OpAmp/schematic/M6/fw" ) axlSetParameter(x_mainSDB "Two_Stage_Opamp/OpAmp/schematic/M10/m" "2") => t
Related Topics
Return to top