Contains
MathParagraph.Contains method
Détermine si la collection contient une valeur spécifique.
public bool Contains(IMathBlock mathBlock)
Paramètre | Taper | La description |
---|---|---|
mathBlock | IMathBlock | Objet à localiser dans la collection. |
Return_Value
vrai simathBlock se trouve dans la collection; sinon, faux.
Exemples
Exemple :
[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);
Voir également
- interface IMathBlock
- class MathParagraph
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides