PrintTaskOptionDetails.BeginValidation Event

Definition

Raised when the print system begins a validation pass on the current state of the print ticket.

// Register
event_token BeginValidation(TypedEventHandler<PrintTaskOptionDetails, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
PrintTaskOptionDetails::BeginValidation_revoker BeginValidation(auto_revoke_t, TypedEventHandler<PrintTaskOptionDetails, IInspectable const&> const& handler) const;
public event TypedEventHandler<PrintTaskOptionDetails,object> BeginValidation;
function onBeginValidation(eventArgs) { /* Your code */ }
printTaskOptionDetails.addEventListener("beginvalidation", onBeginValidation);
printTaskOptionDetails.removeEventListener("beginvalidation", onBeginValidation);
- or -
printTaskOptionDetails.onbeginvalidation = onBeginValidation;
Public Custom Event BeginValidation As TypedEventHandler(Of PrintTaskOptionDetails, Object) 

Event Type

Applies to