PrintTaskConfiguration.SaveRequested Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Generada por la ventana de impresión de la aplicación para notificar a la aplicación de dispositivo que se debe actualizar el vale de impresión.
// 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)