การทำงานกับOfficeMath

Contents
[ ]

ยิ่งสะดวกในการทำงานกับOfficeMathวัตถุประเภท ในAspose.Wordsลูกค้าสามารถปรับได้อย่างง่ายดายและยังสามารถจัดการว่าสมการจะแสดงแบบอินไลน์หรือในบรรทัดที่แยกต่างหาก มากขึ้นดังนั้นมีความพร้อมของMathObjectType;การควบคุมที่มีประโยชน์สามารถนำมาใช้โดยใช้วัตถุเมทริก.

ตัวอย่างรหัสต่อไปนี้แสดงวิธีการใช้คุณสมบัติเหล่านี้:

// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(UseOfficeMathProperties.class);
Document doc = new Document(dataDir + "MathEquations.docx");
OfficeMath officeMath = (OfficeMath) doc.getChild(NodeType.OFFICE_MATH, 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.setDisplayType(OfficeMathDisplayType.DISPLAY); // or OfficeMathDisplayType.Inline
// Gets/sets Office Math justification.
officeMath.setJustification(OfficeMathJustification.LEFT); // Left justification of Math Paragraph.
doc.save(dataDir + "MathEquations_out.docx");