次の方法で共有


PrintCustomItemListOptionDetails クラス

定義

ユーザー設定の印刷タスク オプション項目の一覧を表します。

public ref class PrintCustomItemListOptionDetails sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class PrintCustomItemListOptionDetails final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class PrintCustomItemListOptionDetails
Public NotInheritable Class PrintCustomItemListOptionDetails
継承
Object Platform::Object IInspectable PrintCustomItemListOptionDetails
属性
実装

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox で導入)
API contract
Windows.Foundation.UniversalApiContract (v1.0 で導入)

注釈

オブジェクトを取得する方法を示すコード スニペットを次に示します。

// Create a new list option.
// This code creates a new item list option that will be shown to the user.
PrintCustomItemListOptionDetails pageFormat = 
    printDetailedOptions.CreateItemListOption("PageContent", "Pictures");
pageFormat.AddItem("PicturesText", "Pictures and text");
pageFormat.AddItem("PicturesOnly", "Pictures only");
pageFormat.AddItem("TextOnly", "Text only");

// Add the custom option to the option list.
printDetailedOptions.DisplayedOptions.Add("PageContent");

// Later in your app, when you want to access the list created above,
// but you don't have access to the pageFormat variable that was returned
// when the list was created, you can get it by looking up the same
// optionId that you used to create the list.
PrintCustomItemListOptionDetails printCustomItemListOptionDetails =
    (PrintCustomItemListOptionDetails)printDetailedOptions.Options["PageContent"];

バージョン履歴

Windows のバージョン SDK バージョン 追加された値
1803 17134 AddItem(String,String,String,IRandomAccessStreamWithContentType)
1803 17134 説明
1803 17134 WarningText

プロパティ

Description

印刷カスタム 項目リスト オプションの説明を取得または設定します。

DisplayName

ユーザー設定の印刷タスク オプションの一覧にあるアイテムの表示名を取得または設定します。

ErrorText

エラー条件の文字列を取得または設定します。

Items

カスタム印刷タスクの一覧から項目を取得します。

OptionId

カスタム印刷タスク オプションの ID を取得します。

OptionType

カスタム印刷タスク オプションのオプションの種類を取得します。

State

カスタム印刷タスク オプション項目の一覧の状態を取得または設定します。

Value

カスタム印刷タスクの一覧の値を取得または設定します。

WarningText

警告条件の文字列を取得または設定します。

メソッド

AddItem(String, String)

ユーザー設定の印刷タスク オプションの一覧のアイテムの ID または表示名を設定します。

AddItem(String, String, String, IRandomAccessStreamWithContentType)

ユーザー設定の印刷項目オプションの一覧で、アイテム ID、表示名、説明、またはアイコンを設定します。

TrySetValue(Object)

項目 ID またはカスタム項目の表示名の値を設定します。

適用対象