Table of Contents

Class MetadataOptions

Namespace
CobaltPdf
Assembly
CobaltPdf.dll

Defines the descriptive metadata to be embedded in the generated PDF document.

public class MetadataOptions
Inheritance
MetadataOptions
Inherited Members

Remarks

Metadata is stored in the PDF's Information Dictionary and is visible to users through the "Document Properties" dialog in most PDF viewers.

Properties

Author

Gets or sets the name of the person or entity that created the document.

public string? Author { get; set; }

Property Value

string

CreationDate

Gets or sets the date and time the document was created. If null, the current system time at the moment of generation will be used.

public DateTime? CreationDate { get; set; }

Property Value

DateTime?

Creator

Gets or sets the name of the application that created the original document content.

public string? Creator { get; set; }

Property Value

string

Keywords

Gets or sets keywords associated with the document, typically separated by commas.

public string? Keywords { get; set; }

Property Value

string

Producer

Gets or sets the name of the application that converted the content into a PDF. Defaults to "CobaltPdf".

public string? Producer { get; set; }

Property Value

string

Subject

Gets or sets the subject matter of the document.

public string? Subject { get; set; }

Property Value

string

Title

Gets or sets the title of the document.

public string? Title { get; set; }

Property Value

string