PPT PPTX ODP POT ppsx
Aspose.Slides  for .NET
OTP

Измените свойства OTP, используя C#

Создавайте собственные приложения .NET для изменения встроенных и настраиваемых свойств в файлах презентаций с помощью серверных API.

Измените свойства OTP через C#

Используя Aspose.Slides for .NET, разработчики могут получать доступ и изменять значения как встроенных, так и пользовательских свойств. Разработчики могут использовать свойство DocumentProperties , предоставляемое объектом Presentation, для доступа к свойствам документа файла презентации.

Изменить встроенные свойства OTP – C#


// Instantiate the Presentation class that represents the Presentation
Presentation presentation = new Presentation("presentation.otp");

// 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.otp", SaveFormat.Otp);

Добавить пользовательские свойства в OTP – 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.otp", SaveFormat.Otp);

Как извлечь метаданные OTP через C#

Это шаги для извлечения метаданных из файлов OTP.

  1. Создайте экземпляр класса Presentation с путем к файлу OTP

  2. Получить объект DocumentProperties, связанный с презентацией

  3. Перебрать элементы в объекте DocumentProperties

  4. Доступ и изменение пользовательских свойств

Другие поддерживаемые форматы метаданных

Используя C#, вы также можете управлять метаданными многих других форматов, в том числе.