Làm việc với OfficeMath

Contents
[ ]

Bây giờ nó còn tiện lợi hơn khi làm việc với đối tượng OfficeMath Type. Trong Aspose.Words người dùng có thể dễ dàng biện minh và cũng có thể quản lý xem một phương trình được hiển thị inline hay trên một dòng riêng. “Hơn nữa với sự sẵn có của MathObjectType các công cụ điều khiển hữu ích có thể được thực hiện bằng việc sử dụng đối tượng ma trận này.”

Các ví dụ về mã sau đây cho thấy cách sử dụng các thuộc tính này":

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