Item

MathBlock indexer

Obtient ou définit IMathElement à l’index spécifié.

public IMathElement this[int index] { get; set; }
ParamètreLa description
indexL’index de base zéro de l’élément

Return_Value

L’élément mathématique.

Exemples

Exemple :

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

Voir également