nlIsPcellParam
nlIsPcellParam(t_libName t_cellName t_viewName t_instanceName t_deviceParamName) => t/ nil
Description
Checks if the specified device parameter represents a Pcell parameter.
If a maestro view is not open, set the environment variable switchViewList before using this function.
Arguments
Value Returned
|
The specified device parameter represents a Pcell parameter. |
|
|
The specified device parameter does not represent a Pcell parameter or the provided arguments are invalid. |
Examples
The following functions check whether the specified device parameter represents a Pcell parameter.
The first function returns t indicating that the specified device parameter represents a Pcell parameter.
The second function returns nil indicating that the specified device parameter does not represent a Pcell parameter.
nlIsPcellParam("Two_Stage_Opamp" "OpAmp" "schematic" "M4" "simM")
=> t
nlIsPcellParam("Two_Stage_Opamp" "OpAmp" "schematic" "M4" "w")
=> nil
Related Topics
Return to top