Item

Indice IMathBlockCollection

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

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

Valeur de Retour

Le bloc d’un texte mathématique.

Exemples

Exemple:

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
blockCollection.Add(new MathBlock(new MathematicalText("block1")));
blockCollection.Add(new MathBlock(new MathematicalText("block2")));
IMathBlock block = blockCollection[1];

Voir aussi