getBinName

Get a paper bin name.
getBinName([in] BSTR printerName, [in] int binIdx, [out, retval] BSTR *binName)
This function returns the name of the binIdxth available paper bin, on the specified printer.

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

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
getNumBins
getBinID