Class DocumentInfo
Container for document metadata (core properties) such as title, author, and subject used during export.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class DocumentInfo
Constructors
DocumentInfo()
Initializes a metadata container for describing a document during creation, viewing, or export.
Declaration
public DocumentInfo()
Properties
Author
Gets or sets the primary author shown in document properties.
Declaration
public string Author { get; set; }
Property Value
|
System.String
The author. |
Description
Gets or sets a short description or abstract shown in the document’s metadata.
Declaration
public string Description { get; set; }
Property Value
|
System.String
The description. |
Keywords
Gets or sets keywords for search and categorization in document properties.
Declaration
public string Keywords { get; set; }
Property Value
|
System.String
The keywords. |
Subject
Gets or sets the subject or subtitle stored in the document’s metadata.
Declaration
public string Subject { get; set; }
Property Value
|
System.String
The subject. |
Title
Gets or sets the document title written to the package metadata and visible in viewers.
Declaration
public string Title { get; set; }
Property Value
|
System.String
The title. |