IPdfInfos

The IPdfInfos structure contains the same basic information that can be found in Acrobat Reader's™ File Properties . To instantiate the IPdfInfos structure, create the AlambicEdit.PdfInfos object in Workflow's scripting environment.

Javascript implementation:
var pdfInfos = new ActiveXObject("AlambicEdit.PdfInfos");

VBScript implementation:
set pdfInfos = CreateObject("AlambicEdit.PdfInfos")

Structure

iPdfInfos {	
STRING Title
The document's title.
STRING Author
The name of the person who created the document.
STRING Subject
The subject of the document.
STRING Keywords
Keywords associated with the document. Multiple keywords are separated with semi-colons.
STRING Creator
If the document was converted to PDF from another format, the name of the application that created the original document from which it was converted.
STRING Producer
If the document was converted to PDF from another format, the name of the application that converted it to PDF.
STRING CreationDate
The date and time the document was created, in human-readable form.
)