Werken met OfficeMath
Nu is het nog handiger om te werken met OfficeMath Type Objects. In Aspose.Words, de klant kan eenvoudig Justificeren en ook beheren of een vergelijking inline of in een aparte regel wordt weergegeven. Meer zo, met de beschikbaarheid van MathObjectType; nuttige controles kunnen worden uitgevoerd door gebruik te maken van dit matrix object.
De volgende code voorbeelden laten zien hoe gebruik te maken van deze eigenschappen:
# 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") |