PPT
PPTX
ODP
POT
ppsx
PPTM
ویرایش ویژگیهای PPTM با استفاده از C++
برنامههای C++ خود را بسازید تا ویژگیهای داخلی و سفارشی را در فایلهای ارائه با استفاده از APIهای سمت سرور تغییر دهید.
اصلاح ویژگیهای PPTM از طریق C++
با استفاده از Aspose.Slides for C++، توسعهدهندگان میتوانند به مقادیر ویژگیهای داخلی و همچنین ویژگیهای سفارشی دسترسی داشته باشند و آنها را تغییر دهند. توسعهدهندگان میتوانند از ویژگی DocumentProperties که توسط شی Presentation در معرض دید قرار میگیرد برای دسترسی به ویژگیهای سند فایل ارائه استفاده کنند.
اصلاح ویژگیهای داخلی PPTM - C++
// Instantiate the Presentation class that represents the Presentation
System::SharedPtr<Presentation> presentation = System::MakeObject<Presentation>(u"presentation.pptm");
// 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.pptm", SaveFormat::Pptm);
افزودن ویژگی های سفارشی به PPTM - 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.pptm", SaveFormat::Pptm);
نحوه استخراج فراداده PPTM از طریق C++
این مراحل برای استخراج فراداده از فایلهای PPTM است.
کلاس Presentation را با مسیر فایل PPTM نمونه سازی کنید
دریافت شی DocumentProperties مرتبط با Presentation
حلقه روی آیتم ها در شی DocumentProperties
دسترسی و اصلاح خواص سفارشی