Item

IMathElementCollection indexer

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

public IMathElement this[int index] { get; }
ParameterDescription
indexThe zero-based index of the item to get

Examples

Example:

[C#]
IMathElementCollection collection = new MathBlock(new MathematicalText("x"));
IMathElement firstElem = collection[0];

See Also