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