ICorePointerInputSource.PointerPressed Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando uma ação de pressionamento (como uma tecla de tela ou clique no mouse) é recebida para o ponteiro.
// 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
ICorePointerInputSource::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
event TypedEventHandler<object,PointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
iCorePointerInputSource.addEventListener("pointerpressed", onPointerPressed);
iCorePointerInputSource.removeEventListener("pointerpressed", onPointerPressed);
- or -
iCorePointerInputSource.onpointerpressed = onPointerPressed;
Event PointerPressed As TypedEventHandler(Of Object, PointerEventArgs)
Tipo de evento
TypedEventHandler<IInspectable,PointerEventArgs>