Add

MathParagraph.Add method

Fügt IMathBlock am Ende der Sammlung hinzu.

public void Add(IMathBlock mathBlock)
ParameterTypBeschreibung
mathBlockIMathBlockEin mathematischer Block, der am Ende der Sammlung hinzugefügt wird

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")));

Siehe auch