PrintWorkflowJobUISession.PdlDataAvailable Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raised when the background process invokes the print support workflow UI when modifying page description language (PDL) data.
// 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)