PrintTask.Submitting 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 a print task begins submitting content to the print subsystem to be printed.
// Register
event_token Submitting(TypedEventHandler<PrintTask, IInspectable const&> const& handler) const;
// Revoke with event_token
void Submitting(event_token const* cookie) const;
// Revoke with event_revoker
PrintTask::Submitting_revoker Submitting(auto_revoke_t, TypedEventHandler<PrintTask, IInspectable const&> const& handler) const;
public event TypedEventHandler<PrintTask,object> Submitting;
function onSubmitting(eventArgs) { /* Your code */ }
printTask.addEventListener("submitting", onSubmitting);
printTask.removeEventListener("submitting", onSubmitting);
- or -
printTask.onsubmitting = onSubmitting;
Public Custom Event Submitting As TypedEventHandler(Of PrintTask, Object)
Event Type
TypedEventHandler<PrintTask,IInspectable>