Insert

IMathBlockCollection.Insert method

Insère IMathBlock dans la collection à l’index spécifié.

public void Insert(int index, IMathBlock item)
ParamètreTaperLa description
indexInt32Index de base zéro auquel un élément doit être inséré.
itemIMathBlockIMathBlock à insérer.

Exemples

Exemple :

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
IMathBlock block = new MathBlock(new MathematicalText("y"));
blockCollection.Insert(0, block);

Voir également