ICorePointerInputSource.PointerCaptureLost 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 when the pointer input capture stream fails or is lost.
// Register
event_token PointerCaptureLost(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerCaptureLost(event_token const* cookie) const;
// Revoke with event_revoker
ICorePointerInputSource::PointerCaptureLost_revoker PointerCaptureLost(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
event TypedEventHandler<object,PointerEventArgs> PointerCaptureLost;
function onPointerCaptureLost(eventArgs) { /* Your code */ }
iCorePointerInputSource.addEventListener("pointercapturelost", onPointerCaptureLost);
iCorePointerInputSource.removeEventListener("pointercapturelost", onPointerCaptureLost);
- or -
iCorePointerInputSource.onpointercapturelost = onPointerCaptureLost;
Event PointerCaptureLost As TypedEventHandler(Of Object, PointerEventArgs)
Event Type
TypedEventHandler<IInspectable,PointerEventArgs>