MathParagraph

MathParagraph class

数学段落,它是数学块 (IMathBlock) 的容器

public class MathParagraph : IMathParagraph

构造函数

姓名描述
MathParagraph()初始化 MathParagraph 类的新实例。
MathParagraph(IMathBlock)初始化 MathParagraph 类的新实例。

特性

姓名描述
Count { get; }获取集合中实际包含的元素数量。 只读Int32。
Item { get; set; }获取指定索引处的项目。 只读IMathBlock
Justification { get; set; }段落对齐 默认值:CenteredAsGroup

方法

姓名描述
Add(IMathBlock)将 IMathBlock 添加到集合末尾。
Clear()从集合中删除所有元素。
Contains(IMathBlock)确定集合是否包含特定值。
IndexOf(IMathBlock)确定集合中特定 IMathBlock 的索引。
Insert(int, IMathBlock)将 IMathBlock 插入到集合中指定索引处。
Remove(IMathBlock)从集合中删除特定对象的第一个匹配项/>。
RemoveAt(int)删除集合指定索引处的项目。
WriteAsMathMl(Stream)将此MathParagraph的内容保存为 MathML

例子

示例:

[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
mathParagraph.Justification = MathJustification.LeftJustified;

也可以看看