GestureRecognizer.ManipulationUpdated Evento

Definición

Se produce después de iniciar uno o varios puntos de entrada y el movimiento subsiguiente (traducción, expansión o rotación) está en curso.

// Register
event_token ManipulationUpdated(TypedEventHandler<GestureRecognizer, ManipulationUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GestureRecognizer::ManipulationUpdated_revoker ManipulationUpdated(auto_revoke_t, TypedEventHandler<GestureRecognizer, ManipulationUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,ManipulationUpdatedEventArgs> ManipulationUpdated;
function onManipulationUpdated(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("manipulationupdated", onManipulationUpdated);
gestureRecognizer.removeEventListener("manipulationupdated", onManipulationUpdated);
- or -
gestureRecognizer.onmanipulationupdated = onManipulationUpdated;
Public Custom Event ManipulationUpdated As TypedEventHandler(Of GestureRecognizer, ManipulationUpdatedEventArgs) 

Tipo de evento

Se aplica a

Consulte también