COM Interface: IPropertyDefinitions

In eCADSTAR Schematic Editor, this class returns the property definitions at the position in the collection that is specified by an index value.

Members

Functions

Function Description
IPropertyDefinition Item(long index) Returns the properties 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.
IPropertyDefinition Find(BSTR key, PropertyType type = PropertyType_Any) Finds a property whose Name() value is equivalent to the key value. The response time increases in proportion to the size of the collection.
undefined FindAll(BSTR key) Finds all properties whose Name() value is equivalent to the key value, and whose property type matches the type. The response time increases in proportion to the size of the collection.
void Add(BSTR key) Not supported in eCADSTAR Schematic Editor.
void Delete(BSTR key) Not supported in eCADSTAR Schematic Editor.

Properties

Function Description
long Count {get} The number of properties 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.