PrintQualityOptionDetails PrintQualityOptionDetails PrintQualityOptionDetails PrintQualityOptionDetails Class

Definition

Represents the list of print quality options.

public : sealed class PrintQualityOptionDetails : IPrintItemListOptionDetails, IPrintOptionDetailspublic sealed class PrintQualityOptionDetails : IPrintItemListOptionDetails, IPrintOptionDetailsPublic NotInheritable Class PrintQualityOptionDetails Implements IPrintItemListOptionDetails, IPrintOptionDetails// You can use this class in JavaScript.
Attributes
Windows 10 requirements
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 printQualityOptionDetails = 
     printDetailedOptions.options.lookup(Windows.Graphics.Printing.StandardPrintTaskOptions.printQuality);

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 quality 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 items.

OptionId OptionId OptionId OptionId

Gets the ID for the print quality 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 quality option.

OptionType OptionType OptionType OptionType

Gets the option type for the print quality option.

public : PrintOptionType OptionType { get; }public PrintOptionType OptionType { get; }Public ReadOnly Property OptionType As PrintOptionType// You can use this property in JavaScript.

State State State State

Gets or sets the state of the print quality option.

public : PrintOptionStates State { get; set; }public PrintOptionStates State { get; set; }Public ReadWrite Property State As PrintOptionStates// You can use this property in JavaScript.
Value
PrintOptionStates PrintOptionStates PrintOptionStates PrintOptionStates

The state of the print quality option.

Value Value Value Value

Gets or sets the enumerated value of the print quality 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 print quality option.

Methods

TrySetValue(Object) TrySetValue(Object) TrySetValue(Object) TrySetValue(Object)

Sets the value for the print quality 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.
Parameters
value
PlatForm::Object Object Object Object

Value for the print quality option.

Returns
PlatForm::Boolean bool bool bool

Boolean value that indicates TRUE for a successful Get or Set, and FALSE for a failed Get or Set.