Share via


PrintTaskConfiguration.SaveRequested 이벤트

정의

인쇄 티켓을 업데이트해야 한다는 사실을 디바이스 앱에 알리기 위해 앱의 인쇄 창에서 발생합니다.

// Register
event_token SaveRequested(TypedEventHandler<PrintTaskConfiguration, PrintTaskConfigurationSaveRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void SaveRequested(event_token const* cookie) const;

// Revoke with event_revoker
PrintTaskConfiguration::SaveRequested_revoker SaveRequested(auto_revoke_t, TypedEventHandler<PrintTaskConfiguration, PrintTaskConfigurationSaveRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintTaskConfiguration,PrintTaskConfigurationSaveRequestedEventArgs> SaveRequested;
function onSaveRequested(eventArgs) { /* Your code */ }
printTaskConfiguration.addEventListener("saverequested", onSaveRequested);
printTaskConfiguration.removeEventListener("saverequested", onSaveRequested);
- or -
printTaskConfiguration.onsaverequested = onSaveRequested;
Public Custom Event SaveRequested As TypedEventHandler(Of PrintTaskConfiguration, PrintTaskConfigurationSaveRequestedEventArgs) 

이벤트 유형

적용 대상