PrintCustomTextOptionDetails 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
代表自訂列印工作選項。
public ref class PrintCustomTextOptionDetails sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class PrintCustomTextOptionDetails final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class PrintCustomTextOptionDetails
Public NotInheritable Class PrintCustomTextOptionDetails
- 繼承
- 屬性
- 實作
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 引進)
|
備註
以下是示範如何擷取物件的程式碼片段:
// This code creates a new custom text option.
PrintCustomTextOptionDetails customTextOption =
printDetailedOptions.CreateTextOption("myCustomText", "Custom Options");
// Later in your app, when you want to access the custom text option created above,
// but you don't have access to the customTextOption variable that was returned
// when it was created, you can get it by looking up the same optionId that
// you used to create it.
PrintCustomTextOptionDetails printCustomTextOptionDetails =
(PrintCustomTextOptionDetails)printDetailedOptions.Options["myCustomText"];
版本歷程記錄
Windows 版本 | SDK 版本 | 新增值 |
---|---|---|
1803 | 17134 | 描述 |
1803 | 17134 | WarningText |
屬性
Description |
取得或設定列印自訂文字選項的描述。 |
DisplayName |
取得或設定自訂列印工作選項的顯示名稱。 |
ErrorText |
取得或設定錯誤條件的字串。 |
MaxCharacters |
取得或設定自訂列印工作選項顯示名稱的最大字元數。 |
OptionId |
取得自訂列印工作選項的識別碼。 |
OptionType |
取得自訂列印工作選項的選項類型。 |
State |
取得或設定自訂列印工作選項的狀態。 |
Value |
取得或設定自訂列印工作選項的值。 |
WarningText |
取得或設定警告條件的字串。 |
方法
TrySetValue(Object) |
設定自訂列印工作的值。 |