PrintOrientationOptionDetails
PrintOrientationOptionDetails
PrintOrientationOptionDetails
PrintOrientationOptionDetails
Class
Definition
Represents the list of print orientation options.
public : sealed class PrintOrientationOptionDetails : IPrintItemListOptionDetails, IPrintOptionDetailspublic sealed class PrintOrientationOptionDetails : IPrintItemListOptionDetails, IPrintOptionDetailsPublic NotInheritable Class PrintOrientationOptionDetails Implements IPrintItemListOptionDetails, IPrintOptionDetails// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
Here is a JavaScript code snippet that shows how to retrieve the object:
// Retrieve the advanced Print Task Options
var printDetailedOptions =
Windows.Graphics.Printing.OptionDetails.PrintTaskOptionDetails.getFromPrintTaskOptions(printTask.options);
// get the object
var printOrientationOptionDetails =
printDetailedOptions.options.lookup(Windows.Graphics.Printing.StandardPrintTaskOptions.orientation);
Properties
ErrorText ErrorText ErrorText ErrorText
Gets or sets the string for an error condition.
public : PlatForm::String ErrorText { get; set; }public string ErrorText { get; set; }Public ReadWrite Property ErrorText As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
String that describes the error condition.
Items Items Items Items
Gets the list of items for the print media type options.
public : IVectorView<object> Items { get; }public IReadOnlyList<object> Items { get; }Public ReadOnly Property Items As IReadOnlyList<object>// You can use this property in JavaScript.
- Value
- IVectorView<PlatForm::Object> IReadOnlyList<object> IReadOnlyList<object> IReadOnlyList<object>
A pointer to the list of media type options.
OptionId OptionId OptionId OptionId
Gets the ID for the print orientation option.
public : PlatForm::String OptionId { get; }public string OptionId { get; }Public ReadOnly Property OptionId As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The ID for the print orientation option.
OptionType OptionType OptionType OptionType
Gets the option type for the print media type option.
public : PrintOptionType OptionType { get; }public PrintOptionType OptionType { get; }Public ReadOnly Property OptionType As PrintOptionType// You can use this property in JavaScript.
The option type.
State State State State
Gets or sets the state for the print media type option.
public : PrintOptionStates State { get; set; }public PrintOptionStates State { get; set; }Public ReadWrite Property State As PrintOptionStates// You can use this property in JavaScript.
The state of the media type option.
Value Value Value Value
Gets or sets the enumerated value of the print media type option.
public : PlatForm::Object Value { get; }public object Value { get; }Public ReadOnly Property Value As object// You can use this property in JavaScript.
- Value
- PlatForm::Object object object object
The enumerated value of the media type option.
Methods
TrySetValue(Object) TrySetValue(Object) TrySetValue(Object) TrySetValue(Object)
Sets the value for the print orientation option.
public : PlatForm::Boolean TrySetValue(PlatForm::Object value)public bool TrySetValue(Object value)Public Function TrySetValue(value As Object) As bool// You can use this method in JavaScript.
- value
- PlatForm::Object Object Object Object
Value for the print orientation option.
Boolean value that indicates TRUE for a successful Get or Set, and FALSE for a failed Get or Set.