Contains
IMathBlockCollection.Contains method
Bestimmt, ob die Sammlung einen bestimmten Wert enthält.
public bool Contains(IMathBlock item)
Parameter | Typ | Beschreibung |
---|---|---|
item | IMathBlock | Das Objekt, das in der Auflistung gesucht werden soll. |
Rückgabewert
wahr, wennitem befindet sich in der Sammlung; andernfalls falsch.
Beispiele
Beispiel:
[C#]
IMathBlockCollection blockCollection = new MathParagraph();
IMathBlock block = new MathBlock(new MathematicalText("y"));
blockCollection.Add(block);
bool contains = blockCollection.Contains(block);
Siehe auch
- interface IMathBlock
- interface IMathBlockCollection
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides