PPT
PPTX
ODP
POT
ppsx
POTX
Измените свойства POTX, используя C#
Создавайте собственные приложения .NET для изменения встроенных и настраиваемых свойств в файлах презентаций с помощью серверных API.
Измените свойства POTX через C#
Используя Aspose.Slides for .NET, разработчики могут получать доступ и изменять значения как встроенных, так и пользовательских свойств. Разработчики могут использовать свойство DocumentProperties , предоставляемое объектом Presentation, для доступа к свойствам документа файла презентации.
Изменить встроенные свойства POTX – C#
// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.potx");
// 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.potx", SaveFormat.Potx);
Добавить пользовательские свойства в POTX – 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.potx", SaveFormat.Potx);
Как извлечь метаданные POTX через C#
Это шаги для извлечения метаданных из файлов POTX.
Создайте экземпляр класса Presentation с путем к файлу POTX
Получить объект DocumentProperties, связанный с презентацией
Перебрать элементы в объекте DocumentProperties
Доступ и изменение пользовательских свойств