PPT
PPTX
ODP
POT
ppsx
POTM
Измените свойства POTM, используя C#
Создавайте собственные приложения .NET для изменения встроенных и настраиваемых свойств в файлах презентаций с помощью серверных API.
Измените свойства POTM через C#
Используя Aspose.Slides for .NET, разработчики могут получать доступ и изменять значения как встроенных, так и пользовательских свойств. Разработчики могут использовать свойство DocumentProperties , предоставляемое объектом Presentation, для доступа к свойствам документа файла презентации.
Изменить встроенные свойства 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);
Как извлечь метаданные POTM через C#
Это шаги для извлечения метаданных из файлов POTM.
Создайте экземпляр класса Presentation с путем к файлу POTM
Получить объект DocumentProperties, связанный с презентацией
Перебрать элементы в объекте DocumentProperties
Доступ и изменение пользовательских свойств