Share via


ScrollPresenter.ZoomAnimationStarting イベント

定義

または の呼び出しZoomToZoomByによってアニメーションがトリガーされたときに発生します。

// Register
event_token ZoomAnimationStarting(TypedEventHandler<ScrollPresenter, ScrollingZoomAnimationStartingEventArgs const&> const& handler) const;

// Revoke with event_token
void ZoomAnimationStarting(event_token const* cookie) const;

// Revoke with event_revoker
ScrollPresenter::ZoomAnimationStarting_revoker ZoomAnimationStarting(auto_revoke_t, TypedEventHandler<ScrollPresenter, ScrollingZoomAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollPresenter,ScrollingZoomAnimationStartingEventArgs> ZoomAnimationStarting;
function onZoomAnimationStarting(eventArgs) { /* Your code */ }
scrollPresenter.addEventListener("zoomanimationstarting", onZoomAnimationStarting);
scrollPresenter.removeEventListener("zoomanimationstarting", onZoomAnimationStarting);
- or -
scrollPresenter.onzoomanimationstarting = onZoomAnimationStarting;
Public Custom Event ZoomAnimationStarting As TypedEventHandler(Of ScrollPresenter, ScrollingZoomAnimationStartingEventArgs) 

イベントの種類

注釈

このイベントを処理して、開始するアニメーションをカスタマイズします。

適用対象