OfficeMath'le çalışmak
OfficeMath Tipi Nesnelerle çalışmak artık daha da kolay. Aspose.Words’te müşteri kolayca Gerekçelendirebilir ve ayrıca bir denklemin satır içinde mi yoksa ayrı bir satırda mı görüntüleneceğini yönetebilir. Dahası, MathObjectType‘nin kullanıma sunulmasıyla; Bu matris nesnesi kullanılarak faydalı kontroller uygulanabilir.
Aşağıdaki kod örnekleri bu özelliklerin nasıl kullanılacağını gösterir:
# 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") |