Share via


PrintWorkflowJobBackgroundSession.PdlModificationRequested Evento

Definición

Se genera cuando se envía un documento a la pila de impresión y Windows comienza a convertir el documento en el formato de lenguaje de descripción de página (PDL) indicado por la impresora. La aplicación de flujo de trabajo de impresión puede usar miembros del objeto args del evento para modificar la conversión al formato de lenguaje de descripción de página (PDL) indicado por la impresora.

// Register
event_token PdlModificationRequested(TypedEventHandler<PrintWorkflowJobBackgroundSession, PrintWorkflowPdlModificationRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PrintWorkflowJobBackgroundSession::PdlModificationRequested_revoker PdlModificationRequested(auto_revoke_t, TypedEventHandler<PrintWorkflowJobBackgroundSession, PrintWorkflowPdlModificationRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintWorkflowJobBackgroundSession,PrintWorkflowPdlModificationRequestedEventArgs> PdlModificationRequested;
function onPdlModificationRequested(eventArgs) { /* Your code */ }
printWorkflowJobBackgroundSession.addEventListener("pdlmodificationrequested", onPdlModificationRequested);
printWorkflowJobBackgroundSession.removeEventListener("pdlmodificationrequested", onPdlModificationRequested);
- or -
printWorkflowJobBackgroundSession.onpdlmodificationrequested = onPdlModificationRequested;
Public Custom Event PdlModificationRequested As TypedEventHandler(Of PrintWorkflowJobBackgroundSession, PrintWorkflowPdlModificationRequestedEventArgs) 

Tipo de evento

Se aplica a