[]
Contains information about the document. This information includes the document author, title, keywords, etc.
new DocumentInfo(docInfoProperties?): DocumentInfo;
Creates a new DocumentInfo object with specified properties.
The optional settings for creating DocumentInfo.
DocumentInfo
ObjectBase.constructor
new DocumentInfo(om, docInfoProperties?): DocumentInfo;
Creates a new DocumentInfo object with specified properties.
An object manager that controls the lifetime of the DocumentInfo object.
The optional settings for creating DocumentInfo.
DocumentInfo
ObjectBase.constructor
get author(): string;
Gets or sets the name of the person that created the document.
string
set author(value): void;
Gets or sets the name of the person that created the document.
string
void
get createDate(): PdfDateTime;
Gets or sets the creation date and time of the document.
set createDate(date): void;
Gets or sets the creation date and time of the document.
void
get creator(): string;
Gets or sets the name of the application that created the original document.
string
set creator(value): void;
Gets or sets the name of the application that created the original document.
string
void
get id(): number;
Gets the reference to the object.
number
get keywords(): string;
Gets or sets keywords (separated by comma) associated with the document.
string
set keywords(value): void;
Gets or sets keywords (separated by comma) associated with the document.
string
void
get modifyDate(): PdfDateTime;
Gets or sets the date and time the document was most recently modified.
set modifyDate(date): void;
Gets or sets the date and time the document was most recently modified.
void
get om(): ObjectManager;
Gets the owner ObjectManager instance.
get producer(): string;
Gets or sets the name of the application that created the document.
string
set producer(value): void;
Gets or sets the name of the application that created the document.
string
void
get subject(): string;
Gets or sets the subject of the document.
string
set subject(value): void;
Gets or sets the subject of the document.
string
void
get title(): string;
Gets or sets the title of the document.
string
set title(value): void;
Gets or sets the title of the document.
string
void
free(): void;
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(omTo): void;
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void
reset(): void;
Resets properties of this DocumentInfo object to default values.
void