IScrollController.ScrollByRequested Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when a scroll by an particular offset delta is requested.
// 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)