IMathElementCollection class

IMathElementCollection class

Represents a collection of mathematical elements (MathElement).

The IMathElementCollection type exposes the following members:

Properties

PropertyDescription
countGets the number of elements actually contained in the collection.
Read-only int.

Gets the element at the specified index. Read-only IMathElement.

Indexer

NameDescription
[index]The zero-based index of the item to get

Methods

MethodDescription
add(self, item)Adds a math element to the end of the collection.
index_of(self, item)Determines the index of a specific math element in collection.
insert(self, index, item)Inserts a math element into the collection at the specified index.
clear(self)Removes all elements from the collection.
contains(self, item)Determines whether the collection contains a specific value.
remove(self, item)Removes the first occurrence of a specific object from the collection.
remove_at(self, index)Removes the element at the specified index of the collection.
copy_to(self, array, array_index)Copy to specified array.

See Also