עבודה עם OfficeMath

Contents
[ ]

עכשיו זה אפילו יותר נוח לעבוד עם אובייקטים מסוג OfficeMath. In In In Aspose.Words, הלקוח יכול בקלות לתקן ויכול גם לנהל אם משוואה מוצגת בקו או בקו נפרד. יותר מכך, עם זמינות MathObjectType; ניתן ליישם בקרה שימושית על ידי שימוש באובייקט ממטריקס זה.

דוגמאות הקוד הבאות מראות כיצד להשתמש בתכונות אלה:

// 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");