schInhConFind
schInhConFind(w_windowId [ d_inst ]) =>l_inhConList
Description
Given a windowId and an optional list of instances (or all instances in the window if none are explicitly specified), will return a list of inherited connections eligible for override beneath these instances.
Each inherited connection in the list is represented by a DPL (disembodied property list) with the following fields:
-
name
The name of the inherited connection (the “property name” that must be used to override the connection). -
default
The default net name. -
value
The current net to which the connection is attached. -
inst
The instance under which the connection was found.
Arguments
|
Window where the function runs. If not specified, the current window is used. |
|
|
Optional list of instances whose eligible inheritance connection details you want to return. |
Value Returned
Examples
schInhConFind(hiGetCurrentWindow())
=>
((nil name POWER default pwr! value pwr! inst db:12345678)
(nil name GROUND default gnd! value gnd! inst db:12345678))
Return to top