CoreInkIndependentInputSource.PointerExiting 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.
Occurs as a pointer is detected leaving the hit test, or bounding, area of the InkCanvas associated with the InkPresenter object.
// Register
event_token PointerExiting(TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerExiting(event_token const* cookie) const;
// Revoke with event_revoker
CoreInkIndependentInputSource::PointerExiting_revoker PointerExiting(auto_revoke_t, TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreInkIndependentInputSource,PointerEventArgs> PointerExiting;
function onPointerExiting(eventArgs) { /* Your code */ }
coreInkIndependentInputSource.addEventListener("pointerexiting", onPointerExiting);
coreInkIndependentInputSource.removeEventListener("pointerexiting", onPointerExiting);
- or -
coreInkIndependentInputSource.onpointerexiting = onPointerExiting;
Public Custom Event PointerExiting As TypedEventHandler(Of CoreInkIndependentInputSource, PointerEventArgs)