nlIsPcellInstance
nlIsPcellInstance(t_libName t_cellName t_viewName t_instanceName) => t/ nil
Description
Checks if the specified instance name represents a schematic Pcell instance.
If a maestro view is not open, set the environment variable switchViewList before using this function.
Arguments
Value Returned
|
The specified instance name represents a schematic Pcell instance. |
|
Examples
The following functions check whether the specified instance represents a schematic Pcell instance.
The first function returns t indicating that the specified instance name represents a schematic Pcell instance.
The second function returns nil indicating that the specified instance name does not represents a schematic Pcell instance.
nlIsPcellInstance("Two_Stage_Opamp" "OpAmp" "schematic" "M4")
=> t
nlIsPcellInstance("Two_Stage_Opamp" "OpAmp" "schematic" "V0")
=> nil
Related Topics
Return to top