PPT
PPTX
ODP
POT
ppsx
PPSM
แก้ไขคุณสมบัติ PPSM โดยใช้ Python
สร้างแอป Python ของคุณเองเพื่อแก้ไขคุณสมบัติในตัวและคุณสมบัติกำหนดเองในไฟล์งานนำเสนอโดยใช้ API ฝั่งเซิร์ฟเวอร์
แก้ไขคุณสมบัติ PPSM ผ่าน Python
เมื่อใช้ Aspose.Slides for Python via .NET นักพัฒนาสามารถเข้าถึงและแก้ไขค่าของคุณสมบัติในตัวรวมถึงคุณสมบัติที่กำหนดเอง นักพัฒนาสามารถใช้คุณสมบัติ DocumentProperties ที่เปิดเผยโดยออบเจกต์การนำเสนอเพื่อเข้าถึงคุณสมบัติเอกสารของไฟล์การนำเสนอ
แก้ไข PPSM คุณสมบัติในตัว - Python
import aspose.slides as slides
# Instantiate the Presentation class that represents the Presentation
with slides.Presentation(path + "ModifyBuiltinProperties.ppsm") as presentation:
# Create a reference to object associated with Presentation
documentProperties = presentation.document_properties
# Set the builtin properties
documentProperties.author = "Aspose.Slides for Python"
documentProperties.title = "Modifying Presentation Properties"
documentProperties.subject = "Aspose Subject"
documentProperties.comments = "Aspose Description"
documentProperties.manager = "Aspose Manager"
# save your presentation to a file
presentation.save("DocumentProperties_out.ppsm", slides.export.SaveFormat.PPSM)
เพิ่มคุณสมบัติที่กำหนดเองใน PPSM - Python
import aspose.slides as slides
# Instantiate the Presentation class
with slides.Presentation() as presentation:
# Getting Document Properties
documentProperties = presentation.document_properties
# Adding Custom properties
documentProperties.set_custom_property_value("New Custom", 12)
documentProperties.set_custom_property_value("My Nam", "Aspose Metadata Editor")
documentProperties.set_custom_property_value("Custom", 124)
# Getting property name at particular index
getPropertyName = documentProperties.get_custom_property_name(2)
# Removing selected property
documentProperties.remove_custom_property(getPropertyName)
# Saving presentation
presentation.save("CustomDocumentProperties_out.ppsm", slides.export.SaveFormat.PPSM)
วิธีดึงข้อมูลเมตาของ PPSM ผ่าน Python
นี่คือขั้นตอนในการดึงข้อมูลเมตาจากไฟล์ PPSM
สร้างอินสแตนซ์ของคลาสงานนำเสนอด้วยพาธไปยังไฟล์ PPSM
รับวัตถุ DocumentProperties ที่เกี่ยวข้องกับการนำเสนอ
วนซ้ำรายการในวัตถุ DocumentProperties
เข้าถึงและแก้ไขคุณสมบัติแบบกำหนดเอง