OfficeMath の使用
Contents
[
Hide
]
OfficeMath タイプ オブジェクトの操作がさらに便利になりました。 Aspose.Words では、お客様は簡単に Justify を行うことができ、方程式をインラインで表示するか別の行で表示するかを管理することもできます。 MathObjectType が利用できるようになると、さらに重要になります。このマトリックス オブジェクトを使用すると、便利なコントロールを実装できます。
次のコード例は、これらのプロパティを使用する方法を示しています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir_WorkingWithFields(); | |
Document doc = new Document(dataDir+ "MathEquations.docx"); | |
OfficeMath officeMath = (OfficeMath)doc.GetChild(NodeType.OfficeMath, 0, true); | |
// Gets/sets Office Math display format type which represents whether an equation is displayed inline with the text or displayed on its own line. | |
officeMath.DisplayType = OfficeMathDisplayType.Display; // or OfficeMathDisplayType.Inline | |
// Gets/sets Office Math justification. | |
officeMath.Justification = OfficeMathJustification.Left; // Left justification of Math Paragraph. | |
doc.Save(dataDir + "MathEquations_out.docx"); |