ทำงานกับ OfficeMath

Contents
[ ]

ตอนนี้การทำงานกับ OfficeMath Type Objects สะดวกยิ่งขึ้น ใน 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");