Class DocumentInformation
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class encapsulates the options to control the PDF document description (author, title, keywords, etc). The Document class exposes a reference to an object of this type in the DocumentInformation property
[ClassInterface(ClassInterfaceType.AutoDual)]
public class DocumentInformation
- Inheritance
-
DocumentInformation
- Inherited Members
Properties
Author
Gets or sets the name of document author.
public string Author { get; set; }
Property Value
CreationDate
Gets or sets the date and time the PDF document was created.
public DateTime CreationDate { get; set; }
Property Value
Keywords
Gets or sets the keywords associated with the PDF document.
public string Keywords { get; set; }
Property Value
Producer
Gets the name of the PDF document producer.
public string Producer { get; }
Property Value
Subject
Gets or sets the subject of a PDF document.
public string Subject { get; set; }
Property Value
Title
Gets or sets the document title.
public string Title { get; set; }