ScrollView.ZoomAnimationStarting Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando uma chamada para ZoomTo
ou ZoomBy
dispara uma animação.
// 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)
Tipo de evento
Comentários
Manipule esse evento para personalizar a animação que está sendo iniciada.