IndexOf

IMathBlockCollection.IndexOf method

Détermine l’index d’un IMathBlock spécifique dans la collection.

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

Return_Value

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

Exemples

Exemple :

[C#]
IMathBlockCollection blockCollection = new MathParagraph();
IMathBlock block = new MathBlock(new MathematicalText("y"));
blockCollection.Add(block);
int index = blockCollection.IndexOf(block);

Voir également