AdControl.OnMouseWheel Ereignis

Definition

Wird ausgelöst, wenn adControl ein Mausradereignis empfängt.

// 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) 

Ereignistyp

System.EventHandler<MouseWheelEventArgs>

Gilt für: