gpeLoadReuseTemplate
gpeLoadReuseTemplate(l_target t_structureName t_fileName[l_mapping] [n_rows] ) =>u_sandbox/ nil
Description
Creates a new Modgen constraint by applying the given Modgen reuse template to the specified list of instances.
Arguments
Value Returned
Example
Applies the dfII.txt template to a set of instances to create a new Modgen.
inst1 = dbFindAnyInstByName(geGetEditCellView() "M11")
inst2 = dbFindAnyInstByName(geGetEditCellView() "M12")
gpeLoadReuseTemplate(list(inst1 inst2) "MOS_Differential_Pair" "diff1.txt")
The following example uses optional arguments to specify mapping and number of rows in the Modgen.
gpeLoadReuseTemplate(list(inst1 inst2) "MOS_Differential_Pair" "diff1.txt" ?mapping list(list(inst1~>name "A") list(inst2~>name "B")) ?rows 2)
Return to top