OfficeMathでの作業

Contents
[ ]

OfficeMath 型オブジェクトの操作がさらに便利になりました。Aspose.Words では、顧客は簡単に位置合わせでき、方程式をインラインで表示するか別の行で表示するかを管理することもできます。さらに、MathObjectType が利用できるようになったことで、このマトリックス オブジェクトを使用して便利なコントロールを実装できます。

次のコード例は、これらのプロパティを使用する方法を示しています:

For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-C
// The path to the documents directories.
System::String inputDataDir = GetInputDataDir_WorkingWithFields();
System::String outputDataDir = GetOutputDataDir_WorkingWithFields();
System::SharedPtr<Document> doc = System::MakeObject<Document>(inputDataDir + u"MathEquations.docx");
System::SharedPtr<OfficeMath> officeMath = System::DynamicCast<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->set_DisplayType(OfficeMathDisplayType::Display);
// or OfficeMathDisplayType.Inline
// Gets/sets Office Math justification.
officeMath->set_Justification(OfficeMathJustification::Left);
// Left justification of Math Paragraph.
System::String outputPath = outputDataDir + u"UseOfficeMathProperties.docx";
doc->Save(outputPath);