IndexOf

IMathElementCollection.IndexOf method

Détermine l’index d’un élément mathématique spécifique dans la collection.

public int IndexOf(IMathElement item)
ParamètreTaperLa description
itemIMathElementL’élément à localiser dans la collection.

Return_Value

L’indice deitem s’il se trouve dans la collection ; sinon, -1.

Exemples

Exemple :

[C#]
IMathElementCollection collection = new MathBlock(new MathematicalText("x"));
MathematicalText plusElement = new MathematicalText("+");
collection.Add(plusElement);
collection.Add(new MathRadical(new MathematicalText("x"), new MathematicalText("3")));
int index = collection.IndexOf(plusElement);

Voir également