CoreComponentInputSource.PointerCaptureLost Event

Definition

Raised when the pointer input capture stream 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
CoreComponentInputSource::PointerCaptureLost_revoker PointerCaptureLost(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerCaptureLost;
function onPointerCaptureLost(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointercapturelost", onPointerCaptureLost);
coreComponentInputSource.removeEventListener("pointercapturelost", onPointerCaptureLost);
- or -
coreComponentInputSource.onpointercapturelost = onPointerCaptureLost;
Public Custom Event PointerCaptureLost As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerCaptureLost

Event Type

Implements

Remarks

This event is only raised if the input device supports pointer data capture.

Applies to