2021.2

Table Of Contents
Print(printername)
Prints a range of PDF pages to the specified Windows printer with default options. See also:
"PrintEx(printername, *PdfPrintParams)" below.
Syntax
VOID Print (
STRING printerName,
LONG fromPage,
LONG toPage
)
printerName (optional)
Name of the printer to print to. The default options of the printer will be used. If NULL, the
default printer is used.
fromPage
0-based index of the first page to print.
toPage
0-based index of the last page to print. To print all pages from fromPage to the end, use -1.
PrintEx(printername, *PdfPrintParams)
Prints a range of PDF pages to the specified Windows printer with specific printer options
stored in an "IPdfPrintParams" on page274 structure. See also: "Print(printername)" above.
Syntax
VOID PrintEx (
STRING printerName,
IPdfPrintParams * PdfPrintParams
)
printerName (optional)
Name of the printer to print to. The default options of the printer will be used. PdfPrintParams ,
if non-NULL, may override some of them. If NULL, the default printer is used.
PdfPrintParams (optional)
Page 254