Contains

MathParagraph.Contains method

Bestimmt, ob die Sammlung einen bestimmten Wert enthält.

public bool Contains(IMathBlock mathBlock)
ParameterTypBeschreibung
mathBlockIMathBlockDas 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