InputBin Enumeration
Specifies the input bin that is used as the source of blank paper or other print media.
Assembly: ReachFramework (in ReachFramework.dll)
| Member name | Description | |
|---|---|---|
| AutoSelect | The automatic selection of an input bin according to the page size and media output type. | |
| AutoSheetFeeder | The automatic sheet feeder is used. | |
| Cassette | A removable paper bin is used. | |
| Manual | The manual input bin is used. | |
| Tractor | A tractor feed (also called a pin feed) of continuous-feed paper is used. | |
| Unknown | The feature (whose options are represented by this enumeration) is set to an option not defined in the Print Schema. |
The values of this type are used primarily for these purposes:
As members of the InputBinCapability collection, a property of PrintCapabilities, they indicate the types of input bins that the printer supports.
As the value of the InputBin property of a PrintTicket, they instruct the printer to use the specified bin.
The Unknown value is never used in properties of PrintCapabilities objects.
You should never set a PrintTicket property to Unknown. If some other PrintTicket producing application has created a PrintTicket document that sets the input bin feature to an unrecognized option, (that is, an option that is not defined in the Print Schema, then a PrintTicket object in your application that is constructed with that document will have InputBin.Unknown as the value of the InputBin property.
Although the PrintTicket and PrintCapabilities classes cannot be inherited, you can extend the Print Schema to recognize print device features that are not accounted for in the PrintTicket or PrintCapabilities classes. For more information, see NOTINBUILD: How to: Extend the Print Schema and Create New Print System Classes.
The following example shows how to determine printer capabilities and configure the print job to take advantage of them.
' ---------------------- GetPrintTicketFromPrinter ----------------------- ''' <summary> ''' Returns a PrintTicket based on the current default printer.</summary> ''' <returns> ''' A PrintTicket for the current local default printer.</returns> Private Function GetPrintTicketFromPrinter() As PrintTicket Dim printQueue As PrintQueue = Nothing Dim localPrintServer As New LocalPrintServer() ' Retrieving collection of local printer on user machine Dim localPrinterCollection As PrintQueueCollection = localPrintServer.GetPrintQueues() Dim localPrinterEnumerator As System.Collections.IEnumerator = localPrinterCollection.GetEnumerator() If localPrinterEnumerator.MoveNext() Then ' Get PrintQueue from first available printer printQueue = CType(localPrinterEnumerator.Current, PrintQueue) Else ' No printer exist, return null PrintTicket Return Nothing End If ' Get default PrintTicket from printer Dim printTicket As PrintTicket = printQueue.DefaultPrintTicket Dim printCapabilites As PrintCapabilities = printQueue.GetPrintCapabilities() ' Modify PrintTicket If printCapabilites.CollationCapability.Contains(Collation.Collated) Then printTicket.Collation = Collation.Collated End If If printCapabilites.DuplexingCapability.Contains(Duplexing.TwoSidedLongEdge) Then printTicket.Duplexing = Duplexing.TwoSidedLongEdge End If If printCapabilites.StaplingCapability.Contains(Stapling.StapleDualLeft) Then printTicket.Stapling = Stapling.StapleDualLeft End If Return printTicket End Function ' end:GetPrintTicketFromPrinter()
Available since 3.0