Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

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

d_cellViewId

Database ID of a cellview.

Value Returned

I_genId

ID of a dbGenerator object.

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
 ⠀
X