WordProcessingPackage
Contents
[
Hide
]
WordProcessingPackage class
Represents a native metadata package in a word processing document.
public class WordProcessingPackage : DocumentPackage
Properties
| Name | Description |
|---|---|
| Author { get; set; } | Gets or sets the document’s author. |
| BytesInDocument { get; } | Gets an estimate of the number of bytes in the document. |
| 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. |
| ContentType { get; set; } | Gets or sets the content type of the document. |
| 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. |
| HyperlinksChanged { get; set; } | Gets or sets the Hyperlinks Changed of the document. |
| 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; set; } | Gets or sets the time of the last save. |
| LinksUpToDate { get; set; } | Gets or sets a value indicating whether the hyperlinks in the document are up-to-date. |
| Manager { get; set; } | Gets or sets the manager. |
| MetadataType { get; } | Gets the metadata type. |
| NameOfApplication { get; } | Gets the name of the application. |
| 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. |
| ScaleCrop { get; set; } | Gets or sets the ScaleCrop of the document. |
| SharedDoc { get; set; } | Gets or sets the SharedDoc of the document. |
| Subject { get; set; } | Gets or sets the subject. |
| Template { get; set; } | Gets or sets the template. |
| Title { get; set; } | Gets or sets the title of the document. |
| TitlesOfParts { get; } | Gets the titles of document parts. Read-only. |
| TotalEditingTime { get; set; } | Gets or sets the total editing time in minutes. |
| Version { get; } | Gets the version number of the application that created the document. |
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 code sample shows how to update built-in metadata properties in a WordProcessing document.
using (Metadata metadata = new Metadata(Constants.InputDoc))
{
var root = metadata.GetRootPackage<WordProcessingRootPackage>();
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.OutputDoc);
}
See Also
- class DocumentPackage
- namespace GroupDocs.Metadata.Formats.Document
- assembly GroupDocs.Metadata