AdControl.OnPointerMove Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché lorsque l’appareil pointant est déplacé.
// Register
event_token OnPointerMove(EventHandler<PointerMoveEventArgs> const& handler) const;
// Revoke with event_token
void OnPointerMove(event_token const* cookie) const;
// Revoke with event_revoker
AdControl::OnPointerMove_revoker OnPointerMove(auto_revoke_t, EventHandler<PointerMoveEventArgs> const& handler) const;
public event System.EventHandler<PointerMoveEventArgs> OnPointerMove;
function onOnPointerMove(eventArgs) { /* Your code */ }
adControl.addEventListener("onpointermove", onOnPointerMove);
adControl.removeEventListener("onpointermove", onOnPointerMove);
- or -
adControl.ononpointermove = onOnPointerMove;
Public Custom Event OnPointerMove As EventHandler(Of PointerMoveEventArgs)