Item

IMathElementCollection indexer

Obtient l’élément à l’index spécifié. Lecture seule IMathElement.

public IMathElement this[int index] { get; }
ParamètreDescription
indexL’index basé sur zéro de l’élément à obtenir

Exemples

Exemple:

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

Voir Aussi