2022.2

Table Of Contents
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.
)
IPdfPrintParams
The IPdfPrintParams structure contains information used to control the printing of the file. To instan-
tiate the IPdfPrintParams structure, create the AlambicEdit.PdfPrintParams object in Workflow's script-
ing environment.
Javascript implementation:
var pdfPrintParams= new ActiveXObject("AlambicEdit.PdfPrintParams");
VBScript implementation:
set pdfPrintParams = CreateObject("AlambicEdit.PdfPrintParams")
Structure
IPdfPrintParams {
STRING docName
Name of the document; this is the name displayed in the Windows spooler
window.
STRING pageRange
Pages to print and/or page ranges separated by commas; e.g. "0,3,5-12".
Page numbers are 0-based. Leave empty to print all pages.
LONG copies
Number of copies to print.
BOOL shrinkToFit
If true, the page will be resized (shrunk or expanded) and rotated to fit
to the physical media on which it is being printed.
BOOL printAnnotations
If true, annotations will be printed.
)
IPdfRect
The IPdfRect structure defines a rectangular region within a PDF page. To instantiate the IPdfRect
structure, create the AlambicEdit.PdfRect object in Workflow's scripting environment.
Javascript implementation:
var pdfRect = new ActiveXObject("AlambicEdit.PdfRect");
Page 217