InkStrokeInput.StrokeCanceled Event

Definition

Occurs when ink input bubbles up to another system event handler, such as a context menu.

// Register
event_token StrokeCanceled(TypedEventHandler<InkStrokeInput, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InkStrokeInput::StrokeCanceled_revoker StrokeCanceled(auto_revoke_t, TypedEventHandler<InkStrokeInput, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InkStrokeInput,PointerEventArgs> StrokeCanceled;
function onStrokeCanceled(eventArgs) { /* Your code */ }
inkStrokeInput.addEventListener("strokecanceled", onStrokeCanceled);
inkStrokeInput.removeEventListener("strokecanceled", onStrokeCanceled);
- or -
inkStrokeInput.onstrokecanceled = onStrokeCanceled;
Public Custom Event StrokeCanceled As TypedEventHandler(Of InkStrokeInput, PointerEventArgs) 

Event Type

Applies to

See also