PrintTask.Progressing Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché pour fournir des informations sur l’avancement de la quantité de contenu imprimé qui a été soumis au sous-système d’impression pour impression.
// 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)