Share via


ScrollView.ScrollAnimationStarting Event

Definition

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.

Applies to