다음을 통해 공유


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>

적용 대상