OfficeMathJustification
OfficeMathJustification enumeration
指定方程的合理性。
public enum OfficeMathJustification
价值观
姓名 | 价值 | 描述 |
---|---|---|
CenterGroup | 1 | 将数学文本实例相对于彼此向左对齐,并将数学 文本组(数学段落)相对于页面居中。 |
Center | 2 | 将数学文本的每个实例相对于边距单独居中。 |
Left | 3 | 数学段落的左对齐。 |
Right | 4 | 数学段落的右对齐。 |
Inline | 7 | Math. 的内联位置 |
Default | 1 | 默认值CenterGroup. |
例子
演示如何设置 Office 数学显示格式。
Document doc = new Document(MyDir + "Office math.docx");
OfficeMath officeMath = (OfficeMath) doc.GetChild(NodeType.OfficeMath, 0, true);
// 作为其他 OfficeMath 节点子级的 OfficeMath 节点始终是内联的。
// 我们正在使用的节点是改变其位置和显示类型的基础节点。
Assert.AreEqual(MathObjectType.OMathPara, officeMath.MathObjectType);
Assert.AreEqual(NodeType.OfficeMath, officeMath.NodeType);
Assert.AreEqual(officeMath.ParentNode, officeMath.ParentParagraph);
// 更改 OfficeMath 节点的位置和显示类型。
officeMath.DisplayType = OfficeMathDisplayType.Display;
officeMath.Justification = OfficeMathJustification.Left;
doc.Save(ArtifactsDir + "Shape.OfficeMath.docx");
也可以看看
- 命名空间 Aspose.Words.Math
- 部件 Aspose.Words