PrintTask.Submitting É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é lorsqu’une tâche d’impression commence à envoyer du contenu au sous-système d’impression à imprimer.
// Register
event_token Submitting(TypedEventHandler<PrintTask, IInspectable const&> const& handler) const;
// Revoke with event_token
void Submitting(event_token const* cookie) const;
// Revoke with event_revoker
PrintTask::Submitting_revoker Submitting(auto_revoke_t, TypedEventHandler<PrintTask, IInspectable const&> const& handler) const;
public event TypedEventHandler<PrintTask,object> Submitting;
function onSubmitting(eventArgs) { /* Your code */ }
printTask.addEventListener("submitting", onSubmitting);
printTask.removeEventListener("submitting", onSubmitting);
- or -
printTask.onsubmitting = onSubmitting;
Public Custom Event Submitting As TypedEventHandler(Of PrintTask, Object)
Type d'événement
TypedEventHandler<PrintTask,IInspectable>