次の方法で共有


AdControl.OnMouseWheel イベント

定義

AdControl がマウス ホイール イベントを受信したときに発生します。

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

イベントの種類

System.EventHandler<MouseWheelEventArgs>

適用対象