다음을 통해 공유


IScrollController.IsScrollingWithMouseChanged 이벤트

정의

IsScrollingWithMouse 속성 값이 변경되면 발생합니다.

// Register
event_token IsScrollingWithMouseChanged(TypedEventHandler<IScrollController, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
IScrollController::IsScrollingWithMouseChanged_revoker IsScrollingWithMouseChanged(auto_revoke_t, TypedEventHandler<IScrollController, IInspectable const&> const& handler) const;
event TypedEventHandler<IScrollController,object> IsScrollingWithMouseChanged;
function onIsScrollingWithMouseChanged(eventArgs) { /* Your code */ }
iScrollController.addEventListener("isscrollingwithmousechanged", onIsScrollingWithMouseChanged);
iScrollController.removeEventListener("isscrollingwithmousechanged", onIsScrollingWithMouseChanged);
- or -
iScrollController.onisscrollingwithmousechanged = onIsScrollingWithMouseChanged;
Event IsScrollingWithMouseChanged As TypedEventHandler(Of IScrollController, Object) 

이벤트 유형

적용 대상