CoreIndependentInputSource.PointerPressed 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 a mouse button is clicked, or a touch or pen contact is detected, within the bounding rectangle of the UWP app.
// Register
event_token PointerPressed(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerPressed(event_token const* cookie) const;
// Revoke with event_revoker
CoreIndependentInputSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
coreIndependentInputSource.addEventListener("pointerpressed", onPointerPressed);
coreIndependentInputSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
coreIndependentInputSource.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerPressed
Event Type
TypedEventHandler<IInspectable,PointerEventArgs>