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