Contains
MathParagraph.Contains method
Bestimmt, ob die Sammlung einen bestimmten Wert enthält.
public bool Contains(IMathBlock mathBlock)
Parameter | Typ | Beschreibung |
---|---|---|
mathBlock | IMathBlock | Das Objekt, das in der Auflistung gesucht werden soll. |
Rückgabewert
wahr, wennmathBlock befindet sich in der Sammlung; andernfalls falsch.
Beispiele
Beispiel:
[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
IMathBlock block = new MathBlock(new MathematicalText("y"));
mathParagraph.Add(block);
bool contains = mathParagraph.Contains(block);
Siehe auch
- interface IMathBlock
- class MathParagraph
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides