dbStartGenLPPHeaderToShape
dbStartGenLPPHeaderToShape(d_LPPHeaderId) =>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) header.
Arguments
Value Returned
Example
lpp1 = car(cellview1~>lpps)
gen1 = dbStartGenLPPHeaderToShape(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