gpeAddInstance
gpeAddInstance(
d_modgenID
l_instances
)
=> t / nil
Description
Adds the given list of instances to the specified Modgen.
Arguments
|
List of schematic or layout instances to be added to the Modgen. |
Value Returned
Example
The following procedure first identifies a figGroup in the cellview cv, and then assigns it to the specified Modgen modgenid. Instances in the cellview are identified and assigned to inst1 and inst2. These two instances are then added to modgenid.
cv=geGetEditCellView()
modgenid=leGetEditFigGroup()
inst1=dbFindAnyInstByName(cv "M1")
inst2=dbFindAnyInstByName(cv "M2")
gpeAddInstance(modgenid list(inst1 inst2))
Return to top