PrintTask.Progressing 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 per fornire informazioni sullo stato di avanzamento sulla quantità di contenuto stampato inviato al sottosistema di stampa per la stampa.
// Register
event_token Progressing(TypedEventHandler<PrintTask, PrintTaskProgressingEventArgs const&> const& handler) const;
// Revoke with event_token
void Progressing(event_token const* cookie) const;
// Revoke with event_revoker
PrintTask::Progressing_revoker Progressing(auto_revoke_t, TypedEventHandler<PrintTask, PrintTaskProgressingEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintTask,PrintTaskProgressingEventArgs> Progressing;
function onProgressing(eventArgs) { /* Your code */ }
printTask.addEventListener("progressing", onProgressing);
printTask.removeEventListener("progressing", onProgressing);
- or -
printTask.onprogressing = onProgressing;
Public Custom Event Progressing As TypedEventHandler(Of PrintTask, PrintTaskProgressingEventArgs)