Remove

MathParagraph.Remove method

Entfernt das erste Vorkommen eines bestimmten Objekts aus der Sammlung/>.

public bool Remove(IMathBlock mathBlock)
ParameterTypBeschreibung
mathBlockIMathBlockDas Objekt, das aus der Auflistung entfernt werden soll.

Rückgabewert

wahr, wennmathBlock wurde erfolgreich aus der Sammlung entfernt; andernfalls falsch. Diese Methode gibt auch false zurück, wennmathBlock wird nicht in der ursprünglichen Sammlung/>. gefunden

Beispiele

Beispiel:

[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
mathParagraph.Add(new MathBlock(new MathematicalText("x")));
IMathBlock block = new MathBlock(new MathematicalText("y"));
mathParagraph.Add(block);
mathParagraph.Remove(block);

Siehe auch