mgRegenerateModgen
mgRegenerateModgen(d_modgenId) =>t/ nil
Description
Forces a Modgen-type group to rebuild its geometry.
Arguments
Value Returned
Example
After a PDK change that changed the parameters of objects in a Modgen, the following code fragment regenerates the Modgens in a layout view to display the updated geometry:
when(window = hiGetCurrentWindow() when(cellView = geGetEditCellView(window) foreach(fg cellView~>figGroups
when(fg~>type == "modgen"
mgRegenerateModgen(fg)
))))
Return to top