Table of Contents

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

string

CreationDate

Gets or sets the date and time the PDF document was created.

public DateTime CreationDate { get; set; }

Property Value

DateTime

Keywords

Gets or sets the keywords associated with the PDF document.

public string Keywords { get; set; }

Property Value

string

Producer

Gets the name of the PDF document producer.

public string Producer { get; }

Property Value

string

Subject

Gets or sets the subject of a PDF document.

public string Subject { get; set; }

Property Value

string

Title

Gets or sets the document title.

public string Title { get; set; }

Property Value

string