COM Interface: ISchPins

For a schematic design, this class returns the pin at the position in the collection that is specified by an index value.

Members

Functions

Function Description
ISchPin Item(long index) Returns the pins at the position in the collection that is specified by the index value. This must be a valid index position, such that 1 <= i <= Count(). The response time increases in proportion to the size of the collection.
ISchPin Find(BSTR key) Finds a pin whose Label() value is equivalent to the key value. The response time increases in proportion to the size of the collection.
ISchPins FindAll(BSTR key) Finds all pins whose Label()value is equivalent to the key value. The response time increases in proportion to the size of the collection.

Properties

Property Description
long Count {get} The number of pins in the collection. The response time increases in proportion to the size of the collection.
IEnumVARIANT _NewEnum {get} Enables use of the built-in syntax of a COM client to iterate through an object’s collection of items.