GetPrinterBins

Rendering and printing

Description

This function returns a string containing the bin numbers and names for all the bins (paper trays) available for the specified printer. The string returned contains a line of text for each bin, the lines of text are separated with CR/LF characters. Each line contains a numeric bin number, a comma, and the name of the bin, in double quotes. The bin numbers can be used with the SetupPrinter function.

Syntax

Delphi

function TPDFlib.GetPrinterBins(Const PrinterName: WideString): WideString;

ActiveX

Function PDFlib::GetPrinterBins(PrinterName As String) As String

DLL

wchar_t * DLGetPrinterBins(int InstanceID, wchar_t * PrinterName);

Parameters

PrinterNameThe name of the printer to query. 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.