nlGetScratchInstPcellParamValue
nlGetScratchInstPcellParamValue(t_instID t_paramName) =>t_value/ nil
Description
Returns the parameter value of the scratch instance to be used for Pcell evaluations.
If a maestro view is not open, set the environment variable
Arguments
Value Returned
|
Returns the value of the Pcell parameter value stored in given scratch instance. |
|
|
The specified arguments are invalid or the instance with the given name does not exist in the specified cellview. |
Examples
The following example shows how this function returns the database ID of the scratch instance to be used for Pcell evaluations along with the its Pcell parameter value.
instId = nlGetScratchInstance("Two_Stage_Opamp" "OpAmp" "schematic" "M4")
=> db:0x654321bb
nlGetScratchInstPcellParamValue(instId "srcCell")
=> "Analog"
Return to top