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