mgAddCopyDummies
mgAddCopyDummies(
d_mgID
t_sideString
S_netName
l_insts
)
=> t / nil
Description
Creates copies of the specified Modgen dummy and places them on the t_sideString side of the instance.
Arguments
|
Side of the instance where the dummies need to be placed. Valid values are |
|
Value Returned
Example
Creates copies of the specified dummies on the left of the instance "|M5" and "|M6":
mgId = leGetEditFigGroup()
cv = geGetEditCellview()
inst1 = dbFindAnyInstByName(cv "|M5")
inst2 = dbFindAnyInstByName(cv "|M6")
mgAddCopyDummies(mgId "left" "vdda!" list(inst1 inst2))
Return to top