2021.1

Table Of Contents
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");
VBScript implementation:
set pdfRect = CreateObject("AlambicEdit.PdfRect")
Structure
IPdfRect {
LONG left
Left edge of the rectangle.
LONG top
Top edge of the rectangle.
LONG right
Right edge of the rectangle.
LONG bottom
Bottom edge of the rectangle.
)
Page 275