PrintTicket.InputBin Property   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating what input bin (paper tray) to use.
public:
 property Nullable<System::Printing::InputBin> InputBin { Nullable<System::Printing::InputBin> get(); void set(Nullable<System::Printing::InputBin> value); };public System.Printing.InputBin? InputBin { get; set; }member this.InputBin : Nullable<System.Printing.InputBin> with get, setPublic Property InputBin As Nullable(Of InputBin)Property Value
An InputBin value indicating what input tray is used and whether it is chosen manually or automatically.
Exceptions
Calling code has attempted to set the property to a value that is not in the InputBin enumeration.
Remarks
A null value for this property means that this feature setting is not specified. Also, when the value is null, the XML versions of the PrintTicket (see SaveTo and GetXmlStream) will not contain any markup for this feature. That is, there will be no markup for the Print Schema's features JobInputBin, DocumentInputBin, or PageInputBin.
When this property is not null, it will have the following relationships to the features defined in the Print Schema.
- If the XML form of the PrintTicket contains - JobInputBin, then this property has the same value as- JobInputBin(regardless of whether or not there is also- DocumentInputBinor- PageInputBin. markup in the XML version of the PrintTicket).
- If there is no - JobInputBinmarkup, but there is- DocumentInputBin, then this property has the same value as- DocumentInputBin(regardless of whether or not there is also- PageInputBinmarkup) present.
- If there is neither - JobInputBinnor- DocumentInputBinmarkup, but there is- PageInputBinmarkup, then this property has the same value as- PageInputBin.
When this property is set to any InputBin value, then matching JobInputBin markup will be added to the XML print ticket and any DocumentInputBin and PageInputBin markup that is already there will be removed.
You can test for the options that the printer supports by using the InputBinCapability property.