Share via


IScrollController.ScrollToRequested 이벤트

정의

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

// Register
event_token ScrollToRequested(TypedEventHandler<IScrollController, ScrollControllerScrollToRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
IScrollController::ScrollToRequested_revoker ScrollToRequested(auto_revoke_t, TypedEventHandler<IScrollController, ScrollControllerScrollToRequestedEventArgs const&> const& handler) const;
event TypedEventHandler<IScrollController,ScrollControllerScrollToRequestedEventArgs> ScrollToRequested;
function onScrollToRequested(eventArgs) { /* Your code */ }
iScrollController.addEventListener("scrolltorequested", onScrollToRequested);
iScrollController.removeEventListener("scrolltorequested", onScrollToRequested);
- or -
iScrollController.onscrolltorequested = onScrollToRequested;
Event ScrollToRequested As TypedEventHandler(Of IScrollController, ScrollControllerScrollToRequestedEventArgs) 

이벤트 유형

적용 대상