PrintTaskConfiguration.SaveRequested Evento
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.
Generato dalla finestra di stampa per l'app per notificare all'app per dispositivo che il ticket di stampa deve essere aggiornato.
// Register
event_token SaveRequested(TypedEventHandler<PrintTaskConfiguration, PrintTaskConfigurationSaveRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void SaveRequested(event_token const* cookie) const;
// Revoke with event_revoker
PrintTaskConfiguration::SaveRequested_revoker SaveRequested(auto_revoke_t, TypedEventHandler<PrintTaskConfiguration, PrintTaskConfigurationSaveRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintTaskConfiguration,PrintTaskConfigurationSaveRequestedEventArgs> SaveRequested;
function onSaveRequested(eventArgs) { /* Your code */ }
printTaskConfiguration.addEventListener("saverequested", onSaveRequested);
printTaskConfiguration.removeEventListener("saverequested", onSaveRequested);
- or -
printTaskConfiguration.onsaverequested = onSaveRequested;
Public Custom Event SaveRequested As TypedEventHandler(Of PrintTaskConfiguration, PrintTaskConfigurationSaveRequestedEventArgs)