InputPointerSource.PointerRoutedAway Event

Definition

Occurs when a pointer is redirected to another InputPointerSource (possibly in a separate process).

// Register
event_token PointerRoutedAway(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InputPointerSource::PointerRoutedAway_revoker PointerRoutedAway(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerRoutedAway;
function onPointerRoutedAway(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerroutedaway", onPointerRoutedAway);
inputPointerSource.removeEventListener("pointerroutedaway", onPointerRoutedAway);
- or -
inputPointerSource.onpointerroutedaway = onPointerRoutedAway;
Public Custom Event PointerRoutedAway As TypedEventHandler(Of InputPointerSource, PointerEventArgs) 

Event Type

Remarks

If the pointer is released while routed to the other target, a PointerRoutedReleased event will be raised.

Applies to