lceGetIncompleteNetMarkers
lceGetIncompleteNetMarkers( [netID|l_netID] ) =>l_incompleteNetMarkerID
Description
Generates a list of open markers on the specified incomplete nets. If a single net is specified, the opens on that net are returned. If multiple nets are specified, the opens on each net in the list are returned. If no nets are specified, all the opens in the design are returned.
Arguments
|
ID of the net (or nets) for which the open markers are reported. |
|
Value Returned
Example
a = dbFindNetByName(cv "a")
lceGetIncompleteNetMarkers(a)
Returns the open markers on net a.
b = dbFindNetByName(cv "b")
lceGetIncompleteNetMarkers(list(a b))
Returns the open markers on nets a and b.
c = dbFindNetByName(cv "c")
lceGetIncompleteNetMarkers(list(a b c))
Returns the open markers on nets a, b, and c.
lceGetIncompleteNetMarkers()
Returns the open markers in the current edited design.
Return to top