PPT
PPTX
ODP
POT
ppsx
PPS
Redigera egenskaper för PPS med C++
Bygg dina egna C++-appar för att ändra inbyggda och anpassade egenskaper i presentationsfiler med hjälp av API:er på serversidan.
Ändra PPS-egenskaper via C++
Med hjälp av Aspose.Slides for C++ kan utvecklare komma åt och ändra värdena för inbyggda egenskaper såväl som anpassade egenskaper. Utvecklare kan använda egenskapen DocumentProperties som exponeras av Presentation-objektet för att komma åt presentationsfilens dokumentegenskaper.
Ändra PPS inbyggda egenskaper - C++
// Instantiate the Presentation class that represents the Presentation
System::SharedPtr<Presentation> presentation = System::MakeObject<Presentation>(u"presentation.pps");
// Create a reference to IDocumentProperties object associated with Presentation
System::SharedPtr<IDocumentProperties> documentProperties = presentation->get_DocumentProperties();
// Set the builtin properties
documentProperties->set_Author(u"New Author");
documentProperties->set_Title(u"New Title");
// Save your presentation to a file
presentation->Save(u"DocumentProperties_out.pps", SaveFormat::Pps);
Lägg till anpassade egenskaper i PPS - C++
// Instantiate the Presentation class
auto presentation = System::MakeObject<Presentation>();
// Getting Document Properties
auto documentProperties = presentation->get_DocumentProperties();
// Adding Custom properties
documentProperties->idx_set(u"New Custom", ObjectExt::Box<int32_t>(12));
documentProperties->idx_set(u"My Name", ObjectExt::Box<String>(u"Aspose Metadata Editor"));
documentProperties->idx_set(u"Custom", ObjectExt::Box<int32_t>(124));
// Getting property name at particular index
String getPropertyName = documentProperties->GetCustomPropertyName(2);
// Removing selected property
documentProperties->RemoveCustomProperty(getPropertyName);
// Saving presentation
presentation->Save(u"CustomDocumentProperties_out.pps", SaveFormat::Pps);
Hur man extraherar metadata för PPS via C++
Det här är stegen för att extrahera metadata från PPS-filer.
Instantiera presentationsklassen med sökvägen till filen PPS
Hämta DocumentProperties-objekt kopplat till Presentation
Slinga över objekten i DocumentProperties-objektet
Få tillgång till och ändra anpassade egenskaper