AdControl.OnMouseWheel Evento

Definizione

Generato quando AdControl riceve un evento della rotellina del mouse.

// Register
event_token OnMouseWheel(EventHandler<MouseWheelEventArgs> const& handler) const;

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

// Revoke with event_revoker
OnMouseWheel_revoker OnMouseWheel(auto_revoke_t, EventHandler<MouseWheelEventArgs> const& handler) const;
public event System.EventHandler<MouseWheelEventArgs> OnMouseWheel;
function onOnMouseWheel(eventArgs) { /* Your code */ }
adControl.addEventListener("onmousewheel", onOnMouseWheel);
adControl.removeEventListener("onmousewheel", onOnMouseWheel);
- or -
adControl.ononmousewheel = onOnMouseWheel;
Public Custom Event OnMouseWheel As EventHandler(Of MouseWheelEventArgs) 

Tipo evento

System.EventHandler<MouseWheelEventArgs>

Si applica a