PrintWorkflowJobUISession.JobNotification Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Gerado quando um usuário clica em uma notificação de trabalho do sistema.
// Register
event_token JobNotification(TypedEventHandler<PrintWorkflowJobUISession, PrintWorkflowJobNotificationEventArgs const&> const& handler) const;
// Revoke with event_token
void JobNotification(event_token const* cookie) const;
// Revoke with event_revoker
PrintWorkflowJobUISession::JobNotification_revoker JobNotification(auto_revoke_t, TypedEventHandler<PrintWorkflowJobUISession, PrintWorkflowJobNotificationEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintWorkflowJobUISession,PrintWorkflowJobNotificationEventArgs> JobNotification;
function onJobNotification(eventArgs) { /* Your code */ }
printWorkflowJobUISession.addEventListener("jobnotification", onJobNotification);
printWorkflowJobUISession.removeEventListener("jobnotification", onJobNotification);
- or -
printWorkflowJobUISession.onjobnotification = onJobNotification;
Public Custom Event JobNotification As TypedEventHandler(Of PrintWorkflowJobUISession, PrintWorkflowJobNotificationEventArgs)