PPT
PPTX
ODP
POT
ppsx
POTM
تحرير خصائص POTM باستخدام C++
أنشئ تطبيقات C++ الخاصة بك لتعديل الخصائص المضمنة والمخصصة في ملفات العروض التقديمية باستخدام واجهات برمجة التطبيقات من جانب الخادم.
تعديل خصائص POTM عبر C++
باستخدام Aspose.Slides for C++ ، يمكن للمطورين الوصول إلى قيم الخصائص المضمنة بالإضافة إلى الخصائص المخصصة وتعديلها. يمكن للمطورين استخدام خاصية DocumentProperties المكشوفة بواسطة كائن Presentation للوصول إلى خصائص المستند الخاصة بملف العرض التقديمي.
تعديل POTM الخصائص المضمنة - C++
// Instantiate the Presentation class that represents the Presentation
System::SharedPtr<Presentation> presentation = System::MakeObject<Presentation>(u"presentation.potm");
// 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.potm", SaveFormat::Potm);
إضافة خصائص مخصصة إلى POTM - 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.potm", SaveFormat::Potm);
كيفية استخراج البيانات الوصفية لـ POTM عبر C++
هذه هي خطوات استخراج البيانات الوصفية من ملفات POTM.
إنشاء فئة العرض التقديمي بمسار ملف POTM
احصل على كائن DocumentProperties المرتبط بالعرض التقديمي
حلقة فوق العناصر الموجودة في كائن DocumentProperties
الوصول إلى الخصائص المخصصة وتعديلها