다음을 통해 공유


IScrollController.ScrollByRequested 이벤트

정의

특정 오프셋 델타로 스크롤을 요청할 때 발생합니다.

// Register
event_token ScrollByRequested(TypedEventHandler<IScrollController, ScrollControllerScrollByRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
IScrollController::ScrollByRequested_revoker ScrollByRequested(auto_revoke_t, TypedEventHandler<IScrollController, ScrollControllerScrollByRequestedEventArgs const&> const& handler) const;
event TypedEventHandler<IScrollController,ScrollControllerScrollByRequestedEventArgs> ScrollByRequested;
function onScrollByRequested(eventArgs) { /* Your code */ }
iScrollController.addEventListener("scrollbyrequested", onScrollByRequested);
iScrollController.removeEventListener("scrollbyrequested", onScrollByRequested);
- or -
iScrollController.onscrollbyrequested = onScrollByRequested;
Event ScrollByRequested As TypedEventHandler(Of IScrollController, ScrollControllerScrollByRequestedEventArgs) 

이벤트 유형

적용 대상