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)