ทำงานกับ OfficeMath

Contents
[ ]

ตอนนี้การทำงานกับ OfficeMath Type Objects สะดวกยิ่งขึ้น ใน Aspose.Words ลูกค้าสามารถปรับเหตุผลได้อย่างง่ายดายและยังสามารถจัดการได้ว่าจะแสดงสมการแบบอินไลน์หรือแยกบรรทัดกัน ยิ่งไปกว่านั้นด้วยความพร้อมใช้งานของ MathObjectType; การควบคุมที่มีประโยชน์สามารถนำไปใช้ได้โดยใช้ออบเจ็กต์เมทริกซ์นี้

ตัวอย่างโค้ดต่อไปนี้แสดงวิธีการใช้คุณสมบัติเหล่านี้:

# 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")