getNumBins

Get the number of available paper bins/trays.
getNumBins([in] BSTR printerName, [out, retval] int *numBins)
This function returns the number of available paper bins on the specified printer.

Note: getNumBins, getBinName, and getBinID are just simple wrappers around Windows functions. There is no requirement to use these functions if you already know the bin ID that you want to use (e.g., from calling DeviceCapabilities with the DC_BINS argument).

VB:
printerName = "...your printer name here..." nBins = pdf.getNumBins(printerName) For i = 0 To nBins - 1 binName = pdf.getBinName(printerName, i) binID = pdf.getBinID(printerName, i) Print("bin " & i & ": id=" & binID & " name=" & binName) Next i
getBinName
getBinID