ScrollPresenter.ScrollAnimationStarting イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
または の呼び出しScrollTo
ScrollBy
によってアニメーションがトリガーされたときに発生します。
// Register
event_token ScrollAnimationStarting(TypedEventHandler<ScrollPresenter, ScrollingScrollAnimationStartingEventArgs const&> const& handler) const;
// Revoke with event_token
void ScrollAnimationStarting(event_token const* cookie) const;
// Revoke with event_revoker
ScrollPresenter::ScrollAnimationStarting_revoker ScrollAnimationStarting(auto_revoke_t, TypedEventHandler<ScrollPresenter, ScrollingScrollAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollPresenter,ScrollingScrollAnimationStartingEventArgs> ScrollAnimationStarting;
function onScrollAnimationStarting(eventArgs) { /* Your code */ }
scrollPresenter.addEventListener("scrollanimationstarting", onScrollAnimationStarting);
scrollPresenter.removeEventListener("scrollanimationstarting", onScrollAnimationStarting);
- or -
scrollPresenter.onscrollanimationstarting = onScrollAnimationStarting;
Public Custom Event ScrollAnimationStarting As TypedEventHandler(Of ScrollPresenter, ScrollingScrollAnimationStartingEventArgs)
イベントの種類
注釈
このイベントを処理して、開始するアニメーションをカスタマイズします。