Lavorare con OfficeMath
Ora è ancora più conveniente lavorare con gli oggetti di tipo OfficeMath. In Aspose.Words, il cliente può facilmente giustificare e anche gestire se un’equazione viene visualizzata in linea o in una riga separata. Ancor di più, con la disponibilità di MathObjectType; controlli utili possono essere implementati utilizzando questo oggetto matrice.
I seguenti esempi di codice mostrano come utilizzare queste proprietà:
# 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") |