dbStartGenAnyInstToInstTerm
dbStartGenAnyInstToInstTerm(d_instId) =>I_genId
Description
Returns a dbGenerator object that can be used to iterate over all instance terminals for the specified instance.
Arguments
Value Returned
Example
gen1 = dbStartGenAnyInstToInstTerm(inst1)
while(instTermId = gen1~>next
;Use instTermId in the code
)
; Close dbGenerator object reference and remove it from virtual memory
dbStopGen(gen1)
Return to top