dbStartGenLPToShape
dbStartGenLPToShape(d_cellViewId l_layerPurpose) =>I_genId
Description
Returns a dbGenerator object that can be used to iterate over all shapes of the specified cellview and layer-purpose pair (LPP).
Arguments
Value Returned
Example
lpp1 = car(cellview~>shapes~>lpp)
gen1 = dbStartGenLPToShape(lpp1)
while(shapeId = gen1~>next
;Use shapeId in the code
)
; Close dbGenerator object reference and remove it from virtual memory
dbStopGen(gen1)
Return to top