다음을 통해 공유


PrintTask.Progressing 이벤트

정의

인쇄를 위해 인쇄 하위 시스템에 제출된 인쇄 내용의 양에 대한 진행률 정보를 제공하기 위해 발생합니다.

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

이벤트 유형

적용 대상