PrintWorkflowJobUISession.PdlDataAvailable Événement

Définition

Déclenché lorsque le processus en arrière-plan appelle l’interface utilisateur du flux de travail de support d’impression lors de la modification des données PDL (Page Description Language).

// Register
event_token PdlDataAvailable(TypedEventHandler<PrintWorkflowJobUISession, PrintWorkflowPdlDataAvailableEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PrintWorkflowJobUISession::PdlDataAvailable_revoker PdlDataAvailable(auto_revoke_t, TypedEventHandler<PrintWorkflowJobUISession, PrintWorkflowPdlDataAvailableEventArgs const&> const& handler) const;
public event TypedEventHandler<PrintWorkflowJobUISession,PrintWorkflowPdlDataAvailableEventArgs> PdlDataAvailable;
function onPdlDataAvailable(eventArgs) { /* Your code */ }
printWorkflowJobUISession.addEventListener("pdldataavailable", onPdlDataAvailable);
printWorkflowJobUISession.removeEventListener("pdldataavailable", onPdlDataAvailable);
- or -
printWorkflowJobUISession.onpdldataavailable = onPdlDataAvailable;
Public Custom Event PdlDataAvailable As TypedEventHandler(Of PrintWorkflowJobUISession, PrintWorkflowPdlDataAvailableEventArgs) 

Type d'événement

S’applique à