PPT
PPTX
ODP
POT
ppsx
ODP
C++ を使用して ODP プロパティを編集します
独自の C++ アプリを構築して、サーバー側 API を使用してプレゼンテーション ファイルの組み込みおよびカスタム プロパティを変更します。
C++ 経由で ODP プロパティを変更します
Aspose.Slides for C++ を使用すると、開発者は組み込みプロパティとカスタム プロパティの値にアクセスして変更できます。開発者は、プレゼンテーション オブジェクトによって公開される DocumentProperties プロパティを使用して、プレゼンテーション ファイルのドキュメント プロパティにアクセスできます。
ODP 組み込みプロパティの変更 - C++
// Instantiate the Presentation class that represents the Presentation
System::SharedPtr<Presentation> presentation = System::MakeObject<Presentation>(u"presentation.odp");
// 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.odp", SaveFormat::Odp);
カスタム プロパティを ODP - 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.odp", SaveFormat::Odp);
C++ 経由で ODP のメタデータを抽出する方法
これらは、ODP ファイルからメタデータを抽出する手順です。
ODP ファイルへのパスを使用してプレゼンテーション クラスをインスタンス化する
プレゼンテーションに関連付けられた DocumentProperties オブジェクトを取得する
DocumentProperties オブジェクト内のアイテムをループする
カスタム プロパティへのアクセスと変更