עבודה עם OfficeMath
Contents
[
Hide
]
עכשיו זה אפילו יותר נוח לעבוד עם OfficeMath סוג אובייקטים. ב Aspose.Words, הלקוח יכול להצדיק בקלות ויכול גם לנהל אם משוואה מוצגת בשורה או בשורה נפרדת. יותר מכך, עם הזמינות של 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-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); |