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