PPT
PPTX
ODP
POT
ppsx
PPTM
Szerkessze a PPTM tulajdonságokat a Python használatával
Készítse el saját Python alkalmazásait a prezentációs fájlok beépített és egyéni tulajdonságainak kiszolgálóoldali API-k segítségével történő módosításához.
A PPTM tulajdonságok módosítása a Python segítségével
A Aspose.Slides for Python via .NET használatával a fejlesztők hozzáférhetnek és módosíthatják a beépített tulajdonságok, valamint az egyéni tulajdonságok értékeit. A fejlesztők a Presentation objektum által közzétett DocumentProperties tulajdonságot használhatják a prezentációs fájl dokumentum tulajdonságainak eléréséhez.
A PPTM beépített tulajdonságainak módosítása – Python
import aspose.slides as slides
# Instantiate the Presentation class that represents the Presentation
with slides.Presentation(path + "ModifyBuiltinProperties.pptm") 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.pptm", slides.export.SaveFormat.PPTM)
Egyéni tulajdonságok hozzáadása a következőhöz: PPTM – 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.pptm", slides.export.SaveFormat.PPTM)
A PPTM metaadatainak kinyerése a Python segítségével
Ezek a lépések a metaadatok kibontásához a PPTM fájlokból.
Példányosítsa a Presentation osztályt a PPTM fájl elérési útjával
A bemutatóhoz társított DocumentProperties objektum lekérése
Hurok át a DocumentProperties objektum elemei között
Egyéni tulajdonságok elérése és módosítása