Item

MathBlock indexer

Gets or sets IMathElement at the specified index.

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

Return Value

The mathematical element.

Examples

Example:

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

See Also