MathParagraph

IMathPortion.MathParagraph property

数学段落

public IMathParagraph MathParagraph { get; }

例子

示例:

[C#]
using (Presentation pres = new Presentation())
{
    IAutoShape shape = pres.Slides[0].Shapes.AddMathShape(0, 0, 300, 50);
    IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
    mathParagraph.Add(new MathBlock(new MathematicalText("x+y")));
}

也可以看看