dbStartGenNet
dbStartGenNet(d_cellViewId) =>I_genId
Description
Returns a dbGenerator object that can be used to iterate over all nets of the specified cellview.
Arguments
Value Returned
Example
gen1 = dbStartGenNet(cellview1)
while(netId = gen1~>next
;Use netId in the code
)
; Close dbGenerator object reference and remove it from virtual memory
dbStopGen(gen1)
Return to top