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