getNumPrinterPapers

Get the number of available paper sizes.
getNumPrinterPapers([in] BSTR printerName, [out, retval] int *numPapers)
This function returns the number of available paper sizes on the specified printer.

Note: getNumPrinterPapers, getPrinterPaperName, and getPrinterPaperID are just simple wrappers around Windows functions. There is no requirement to use these functions if you already know the paper ID that you want to use (e.g., from calling DeviceCapabilities with the DC_PAPERS argument).

VB:
nPapers = viewer.getNumPrinterPapers(printerName) For i = 0 To nPapers - 1 paperName = viewer.getPrinterPaperName(printerName, i) paperID = viewer.getPrinterPaperID(printerName, i) Print("paper " & i & ": id=" & paperID & " name=" & paperName) Next i
getPrinterPaperName
getPrinterPaperID