Werk met OfficeMath
Nou is dit selfs meer gerieflik om te werk met OfficeMath Tipe Voorwerpe. In Aspose.Words kan die kliënt maklik Regverdig en kan ook bestuur of’n vergelyking inlyn of in’n aparte lyn vertoon word. Meer so, met die beskikbaarheid van MathObjectType; nuttige kontroles kan geïmplementeer word deur hierdie matriks voorwerp te gebruik.
Die volgende kode voorbeelde toon hoe om gebruik te maak van hierdie eienskappe:
// 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"); |