CoreComponentInputSource.PointerMoved Event

Definition

Raised when the pointer is moved for the active hosted XAML element.

// Register
event_token PointerMoved(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreComponentInputSource::PointerMoved_revoker PointerMoved(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerMoved;
function onPointerMoved(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointermoved", onPointerMoved);
coreComponentInputSource.removeEventListener("pointermoved", onPointerMoved);
- or -
coreComponentInputSource.onpointermoved = onPointerMoved;
Public Custom Event PointerMoved As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerMoved

Event Type

Implements

Applies to