ScrollView.ScrollAnimationStarting 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 call to ScrollTo
or ScrollBy
triggers an animation.
// Register
event_token ScrollAnimationStarting(TypedEventHandler<ScrollView, ScrollingScrollAnimationStartingEventArgs const&> const& handler) const;
// Revoke with event_token
void ScrollAnimationStarting(event_token const* cookie) const;
// Revoke with event_revoker
ScrollView::ScrollAnimationStarting_revoker ScrollAnimationStarting(auto_revoke_t, TypedEventHandler<ScrollView, ScrollingScrollAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollView,ScrollingScrollAnimationStartingEventArgs> ScrollAnimationStarting;
function onScrollAnimationStarting(eventArgs) { /* Your code */ }
scrollView.addEventListener("scrollanimationstarting", onScrollAnimationStarting);
scrollView.removeEventListener("scrollanimationstarting", onScrollAnimationStarting);
- or -
scrollView.onscrollanimationstarting = onScrollAnimationStarting;
Public Custom Event ScrollAnimationStarting As TypedEventHandler(Of ScrollView, ScrollingScrollAnimationStartingEventArgs)
Event Type
Remarks
Handle this event to customize the animation that is starting.