Werk met OfficeMath
Contents
[
Hide
]
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Python-via-.NET | |
doc = aw.Document(docs_base.my_dir + "Office math.docx") | |
officeMath = doc.get_child(aw.NodeType.OFFICE_MATH, 0, True).as_office_math() | |
# OfficeMath display type represents whether an equation is displayed inline with the text or displayed on its line. | |
officeMath.display_type = aw.math.OfficeMathDisplayType.DISPLAY | |
officeMath.justification = aw.math.OfficeMathJustification.LEFT | |
doc.save(docs_base.artifacts_dir + "WorkingWithOfficeMath.math_equations.docx") |