Contains

IMathElementCollection.Contains method

Détermine si la collection contient une valeur spécifique.

public bool Contains(IMathElement item)
ParamètreTaperLa description
itemIMathElementObjet à localiser dans la collection.

Return_Value

vrai siitem se trouve dans la collection; sinon, faux.

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")));
bool contains = collection.Contains(plusElement);

Voir également