CoreComponentInputSource.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.
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
TypedEventHandler<IInspectable,PointerEventArgs>
Implements
Remarks
This event is only raised if the input device supports pointer data capture.