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, set
Public 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 asJobInputBin
(regardless of whether or not there is alsoDocumentInputBin
orPageInputBin
. markup in the XML version of the PrintTicket).If there is no
JobInputBin
markup, but there isDocumentInputBin
, then this property has the same value asDocumentInputBin
(regardless of whether or not there is alsoPageInputBin
markup) present.If there is neither
JobInputBin
norDocumentInputBin
markup, but there isPageInputBin
markup, then this property has the same value asPageInputBin
.
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.