PPT
PPTX
ODP
POT
ppsx
POTM
C# を使用して POTM プロパティを編集します
独自の .NET アプリを構築して、サーバー側 API を使用してプレゼンテーション ファイルの組み込みおよびカスタム プロパティを変更します。
C# 経由で POTM プロパティを変更します
Aspose.Slides for .NET を使用すると、開発者は組み込みプロパティとカスタム プロパティの値にアクセスして変更できます。開発者は、プレゼンテーション オブジェクトによって公開される DocumentProperties プロパティを使用して、プレゼンテーション ファイルのドキュメント プロパティにアクセスできます。
POTM 組み込みプロパティの変更 - C#
// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.potm");
// Create a reference to IDocumentProperties object associated with Presentation
IDocumentProperties documentProperties = presentation.DocumentProperties;
// Set the builtin properties
documentProperties.Author = "Aspose.Slides for .NET";
documentProperties.Title = "Modifying Presentation Properties";
documentProperties.Subject = "Aspose Subject";
documentProperties.Comments = "Aspose Description";
documentProperties.Manager = "Aspose Manager";
// Save your presentation to a file
presentation.Save("DocumentProperties_out.potm", SaveFormat.Potm);
カスタム プロパティを POTM - C# に追加
// Instantiate the Presentation class
Presentation presentation = new Presentation();
// Getting Document Properties
IDocumentProperties documentProperties = presentation.DocumentProperties;
// Adding Custom properties
documentProperties["New Custom"] = 12;
documentProperties["My Name"] = "Aspose Metadata Editor";
documentProperties["Custom"] = 124;
// Getting property name at particular index
String getPropertyName = documentProperties.GetCustomPropertyName(2);
// Removing selected property
documentProperties.RemoveCustomProperty(getPropertyName);
// Save your presentation to a file
presentation.Save("CustomDocumentProperties_out.potm", SaveFormat.Potm);
C# 経由で POTM のメタデータを抽出する方法
これらは、POTM ファイルからメタデータを抽出する手順です。
POTM ファイルへのパスを使用してプレゼンテーション クラスをインスタンス化する
プレゼンテーションに関連付けられた DocumentProperties オブジェクトを取得する
DocumentProperties オブジェクト内のアイテムをループする
カスタム プロパティへのアクセスと変更