PrintDocumentToFile

Rendering and printing

Description

Renders certain pages from the selected document to the specified printer. The print output is directed to the specified spool file.

Not all printer drivers support the DocInfo.lpszOutput field so results may vary.

Syntax

Delphi

function TPDFlib.PrintDocumentToFile(Const PrinterName: WideString; StartPage, EndPage, Options: Integer; Const FileName: WideString): Integer;

ActiveX

Function PDFlib::PrintDocumentToFile(PrinterName As String, StartPage As Long, EndPage As Long, Options As Long, FileName As String) As Long

DLL

int DLPrintDocumentToFile(int InstanceID, wchar_t * PrinterName, int StartPage, int EndPage, int Options, wchar_t * FileName);

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.
StartPageThe first page to print
EndPageThe last page to print
OptionsUse the PrintOptions function to obtain a value for this parameter
FileNameThe file name where print output should be spooled to.