다음을 통해 공유


PrintWorkflowJobUISession.JobNotification 이벤트

정의

사용자가 작업 알림 알림을 클릭할 때 발생합니다.

// 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) 

이벤트 유형

적용 대상