PrintCustomItemDetails Classe
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Consente alle app di aggiungere una raccolta di opzioni enumerabili all'esperienza di stampa dell'app.
public ref class PrintCustomItemDetails sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class PrintCustomItemDetails final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class PrintCustomItemDetails
Public NotInheritable Class PrintCustomItemDetails
- Ereditarietà
- Attributi
Requisiti Windows
Famiglia di dispositivi |
Windows 10 (è stato introdotto in 10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
API contract |
Windows.Foundation.UniversalApiContract (è stato introdotto in v1.0)
|
Commenti
Ecco un frammento di codice che illustra come recuperare l'oggetto:
// 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"];
// printCustomItemDetails is available in the Items list from the
// PrintCustomItemsListOptionDetails object.
var printCustomItemDetails = printCustomItemListOptionDetails.Items;
Proprietà
ItemDisplayName |
Ottiene o imposta il nome visualizzato dell'elemento dell'opzione attività di stampa personalizzata. |
ItemId |
Ottiene l'ID dell'elemento dell'opzione attività di stampa personalizzata. |