Function returns instance and pin name for all pins connected to net at specified point. Results are sorted according to the number of pins on owner instance.
Number | Type | Compulsory | Default | Description |
1 | real array | Yes | schematic location | |
2 | string | No | 'ref' | identifying property |
3 | string | No | 'pinname' | pin number of pin name |
Specifies a point on the schematic that identifies a net. This could be returned by the WirePoints function for example.
Property whose value will be used to identify instance in returned values.
Specify whether pins to be identified by their name or number. If set to 'pinnumber', the number will be used otherwise the name will be used.
Return type: string array
An array of strings of length equal to 2 times the number of pins on the net. The even indexes hold the property value identifying the instance and the odd indexes hold either the pin's name or number according to the value of argument 3.
Note that this function does not return pins on implicit connections. An implicit connection is one that is made by virtue of having the same netname as defined by a terminal symbol or similar but has no physical connection using wires.
** Get selected wires Let wires = SelectedWires() ** Get locations for first wire in selected list Let points = WirePoints(wires[0]) ** Show connected pins Show GetConnectedPins([point[0], points[1]])
▲Function Summary▲ | ||
◄ GetConfigLoc | GetConvergenceInfo ▶ |