lceGetShortMarkers
lceGetShortMarkers( [netID|l_netID] ) =>l_shortMarkerID
Description
Prints a list of short markers between the passed nets. If a single net is specified, the shorts between this net and all the other nets are returned. If two nets are specified, the shorts between these two nets are returned. If more nets are specified, the shorts between pairs of nets in the list are returned.
Arguments
Value Returned
Example
a = dbFindNetByName(cv "a")
lceGetShortMarkers(a)
Returns the short markers between net a and other nets.
b = dbFindNetByName(cv "b")
lceGetShortMarkers(list(a b))
Returns the short markers between nets a and b.
c = dbFindNetByName(cv "c")
lceGetShortMarkers(list(a b c))
Returns the short markers between net pairs (a,b), (a,c), and (b,c).
lceGetShortMarkers()
Returns all the short markers in the current edited design.
Return to top