PrintPages

Rendering and printing

Description

Renders a page range list from the selected document to the specified printer.

Syntax

Delphi

function TPDFlib.PrintPages(Const PrinterName, PageRanges: WideString; Options: Integer): Integer;

ActiveX

Function PDFlib::PrintPages(PrinterName As String, PageRanges As String, Options As Long) As Long

DLL

int DLPrintPages(int InstanceID, wchar_t * PrinterName, wchar_t * PageRanges, int Options);

Parameters

PrinterNameThe name of the printer to use for printing. This is the name that appears in the Windows Print Manager. Use the GetPrinterNames function to return a list of valid printers on the system. A value returned by the NewCustomPrinter function can also be used here.
PageRangesA list of pages to print, for example "1-10,12,14"
OptionsUse the PrintOptions function to obtain a value for this parameter

Return values

0An error occurred
1The pages were printed successfully