getPrinterBinID

Get a paper bin ID.
getPrinterBinID([in] BSTR printerName, [in] int binIdx, [out, retval] int *binID)
This function returns the ID for the binIdxth available paper bin, on the specified printer.

binIdx must be between 0 and n-1, where n is the value returned by getNumPrinterBins.

The returned value can be used to set the printBin property.

Note: getNumPrinterBins, getPrinterBinName, and getPrinterBinID 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 = viewer.getNumPrinterBins(printerName) For i = 0 To nBins - 1 binName = viewer.getPrinterBinName(printerName, i) binID = viewer.getPrinterBinID(printerName, i) Print("bin " & i & ": id=" & binID & " name=" & binName) Next i
getNumPrinterBins
getPrinterBinName