InputNonClientPointerSource.PointerPressed Event

Definition

Occurs when a press action (such as a touch press or mouse click) within a region of the non-client area of the window is received for the pointer.

// Register
event_token PointerPressed(TypedEventHandler<InputNonClientPointerSource, NonClientPointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InputNonClientPointerSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<InputNonClientPointerSource, NonClientPointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputNonClientPointerSource,NonClientPointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
inputNonClientPointerSource.addEventListener("pointerpressed", onPointerPressed);
inputNonClientPointerSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
inputNonClientPointerSource.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of InputNonClientPointerSource, NonClientPointerEventArgs) 

Event Type

Applies to