PrintCopiesOptionDetails Class

Definition

Represents the option for the number of printed copies.

public ref class PrintCopiesOptionDetails sealed : IPrintNumberOptionDetails
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class PrintCopiesOptionDetails final : IPrintNumberOptionDetails
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class PrintCopiesOptionDetails : IPrintNumberOptionDetails
Public NotInheritable Class PrintCopiesOptionDetails
Implements IPrintNumberOptionDetails
Inheritance
Object Platform::Object IInspectable PrintCopiesOptionDetails
Attributes
Implements

Windows requirements

Device family
Windows 10 (introduced in 10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
API contract
Windows.Foundation.UniversalApiContract (introduced in v1.0)

Remarks

Here is a code snippet that shows how to retrieve the object:

//  Retrieve the advanced Print Task Options.
PrintTaskOptionDetails printDetailedOptions = PrintTaskOptionDetails.GetFromPrintTaskOptions(printTask.Options);

// Get the object.
PrintCopiesOptionDetails printCopiesOptionDetails =
     (PrintCopiesOptionDetails)printDetailedOptions.Options[StandardPrintTaskOptions.Copies];

Version history

Windows version SDK version Value added
1803 17134 Description
1803 17134 WarningText

Properties

Description

Gets or sets the description of the print copies option.

ErrorText

Gets or sets the string for an error condition.

MaxValue

Gets the value for the maximum number of printed copies allowed.

MinValue

Gets the value for the minimum number of printed copies allowed.

OptionId

Gets the ID for the option for the number of printed copies.

OptionType

Gets the option type for the option for the number of printed copies.

State

Gets or sets the state of the option for the number of printed copies.

Value

Gets or sets the number of copies for a print task.

WarningText

Gets or sets a string for a warning condition.

Methods

TrySetValue(Object)

Sets the value for the print copies option.

Applies to