PrintTaskOptionDetails.BeginValidation 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 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
TypedEventHandler<PrintTaskOptionDetails,IInspectable>