Prints a specific number of pages
from a document. It is available only for client applications.
SyntaxReference_Syntax.print( BOOLEAN param1, INTEGER param2, INTEGER param3, BOOLEAN param4, BOOLEAN param5, BOOLEANparam6, BOOLEAN param7, BOOLEAN param8 )
Parameters
param1
|
true | 1 (JavaScript)
or 1 (FormCalc) (default)
Displays a print dialog box and prompts the user for printing
setup information and confirmation of the action.
false | 0 (JavaScript) or 0 (FormCalc)
Does not display a print dialog box. Printing proceeds without
prompting the user for information or confirmation.
|
param2
|
A valid string representing the page number
of the beginning of the range to print. Page values are 0-based,
so you represent page 1 with a value of 0.
The
start page is included in the printing.
|
param3
|
A valid string representing the page number
of the end of the range to print. Page values are 0-based, so you
represent page 1 with a value of 0.
The end
page is included in the printing.
|
param4
|
true | 1 (JavaScript)
or 1 (FormCalc) (default)
Does not display a cancel dialog box during the printing
process.
false | 0 (JavaScript) or 0 (FormCalc)
Displays a cancel dialog box to stop the printing process.
|
param5
|
true | 1 (JavaScript)
or 1 (FormCalc) (default)
Shrinks the page (if necessary) to fit within the imageable
area of the printed page.
false | 0 (JavaScript) or 0 (FormCalc)
Does not shrink the page to fit within the imageable area
of the printed page.
|
param6
|
true | 1 (JavaScript)
or 1 (FormCalc) (default)
Prints each page as an image.
false | 0 (JavaScript) or 0 (FormCalc)
Prints each page as a page of text.
|
param7
|
true | 1 (JavaScript)
or 1 (FormCalc) (default)
Prints the pages in reverse order.
false | 0 (JavaScript) or 0 (FormCalc)
Prints the pages in order.
|
param8
|
true | 1 (JavaScript)
or 1 (FormCalc) (default)
Prints all annotations.
false | 0 (JavaScript) or 0 (FormCalc)
Does not print annotations.
|
JavaScriptxfa.host.print(1, "0", "0", 0, 1, 0, 0, 0);
FormCalcxfa.host.print(1, "0", "0", 0, 1, 0, 0, 0)
|
|
|