PrintWorkflowJobUISession.PdlDataAvailable Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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)