PresentationPackage

PresentationPackage class

Represents a native metadata package in a presentation.

public class PresentationPackage : DocumentPackage

Properties

Name Description
ApplicationTemplate { get; set; } Gets or sets the application template.
Author { get; set; } Gets or sets the document’s author.
Category { get; set; } Gets or sets the category.
Comments { get; set; } Gets or sets the comments.
Company { get; set; } Gets or sets the company.
ContentStatus { get; set; } Gets or sets the content status. Can be updated in a PPTX document only.
ContentType { get; set; } Gets or sets the content type. Can be updated in a PPTX document only.
Count { get; } Gets the number of metadata properties.
CreatedTime { get; set; } Gets or sets the document created date.
HyperlinkBase { get; set; } Gets or sets the hyperlink base.
Item { get; } Gets the MetadataProperty with the specified name.
Keys { get; } Gets a collection of the metadata property names.
Keywords { get; set; } Gets or sets the keywords.
LastPrintedDate { get; set; } Gets or sets the last printed date.
LastSavedBy { get; set; } Gets or sets the name of the last author.
LastSavedTime { get; } Gets the date and time when the presentation was modified last time.
Manager { get; set; } Gets or sets the manager.
MetadataType { get; } Gets the metadata type.
NameOfApplication { get; } Gets the name of the application created the document.
PresentationFormat { get; } Gets the presentation format.
PropertyDescriptors { get; } Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
RevisionNumber { get; set; } Gets or sets the revision number.
SharedDoc { get; set; } Gets or sets a value indicating whether the presentation is shared between multiple people. Can be updated in a PPTX document only.
Subject { get; set; } Gets or sets the subject.
Title { get; set; } Gets or sets the title of the document.
TotalEditingTime { get; set; } Gets or sets the total editing time of the document.
Version { get; } Gets the application version.

Methods

Name Description
virtual AddProperties(Func<MetadataProperty, bool>, PropertyValue) Adds known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well.
Clear() Removes all writable metadata properties from the package.
ClearBuiltInProperties() Removes all built-in metadata properties.
ClearCustomProperties() Removes all custom metadata properties.
Contains(string) Determines whether the package contains a metadata property with the specified name.
virtual FindProperties(Func<MetadataProperty, bool>) Finds the metadata properties satisfying the specified predicate. The search is recursive so it affects all nested packages as well.
GetEnumerator() Returns an enumerator that iterates through the collection.
Remove(string) Removes a writable metadata property by the specified name.
virtual RemoveProperties(Func<MetadataProperty, bool>) Removes metadata properties satisfying the specified predicate.
virtual Sanitize() Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
Set(string, bool) Adds or replaces the metadata property with the specified name.
Set(string, DateTime) Adds or replaces the metadata property with the specified name.
Set(string, double) Adds or replaces the metadata property with the specified name.
Set(string, int) Adds or replaces the metadata property with the specified name.
Set(string, string) Adds or replaces the metadata property with the specified name.
virtual SetProperties(Func<MetadataProperty, bool>, PropertyValue) Sets known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well. This method is a combination of AddProperties and UpdateProperties. If an existing property satisfies the predicate its value is updated. If there is a known property missing in the package that satisfies the predicate it is added to the package.
virtual UpdateProperties(Func<MetadataProperty, bool>, PropertyValue) Updates known metadata properties satisfying the specified predicate. The operation is recursive so it affects all nested packages as well.

Remarks

Learn more

Examples

This example demonstrates how to update built-in metadata properties in a presentation.

using (Metadata metadata = new Metadata(Constants.InputPptx))
{
    var root = metadata.GetRootPackage<PresentationRootPackage>();

    root.DocumentProperties.Author = "test author";
    root.DocumentProperties.CreatedTime = DateTime.Now;
    root.DocumentProperties.Company = "GroupDocs";
    root.DocumentProperties.Category = "test category";
    root.DocumentProperties.Keywords = "metadata, built-in, update";

    // ... 

    metadata.Save(Constants.OutputPptx);
}

See Also