bndGetBoundObjects
bndGetBoundObjects(d_dbID[d_layCV] ) =>l_list_of_dbIDs/ nil
Description
Returns a list of objects bound to a specified object. The object ID of the bound objects can be specified in different formats. See the argument description for more information.
Arguments
Value Returned
Example
Returns a list of the objects bound to layout instance I0.1|I2(1).
bndGetBoundObjects(dbFindAnyInstByName(layCV "I0.1|I2(1)"))
(((db:0x0a72ea95 0 0 0)
(db:0x0a72cd9e 1 0 0)
)
)
Returns a list of the database IDs of the terminals bound to schematic instances a<0:3>.
bndGetBoundObjects(dbFindNetByName(schCV "a<0:3>")~>term layCV)
((db:0x0a738016)
(db:0x0a738017)
(db:0x0a738018)
(db:0x0a738019)
)
bndGetBoundObjects(list(geGetInstHierPath(schWin)) layCV)
(((db:0x0a72ea93 0 0 0)
(db:0x0a73cd9e 1 0 0)
)
)
Returns a list of instances bound to the schematic bit.
vectInst = dbFindAnyInstByName(schCV "I<0:1>")
bit = 1
bndGetBoundObjects(list(list(vectInst bit)))
(((db:0x1e479d9d 0 0 0)))
Return to top