Trabajando con OfficeMath
Ahora es aún más conveniente trabajar con objetos de tipo OfficeMath. En Aspose.Words, el cliente puede justificar fácilmente y también puede administrar si una ecuación se muestra en línea o en una línea separada. Más aún, con la disponibilidad de MathObjectType; se pueden implementar controles útiles mediante el uso de este objeto matrix.
Los siguientes ejemplos de código muestran cómo hacer uso de estas propiedades:
// 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"); |