GestureRecognizer.ManipulationUpdated Evento

Definição

Ocorre depois que um ou mais pontos de entrada são iniciados e o movimento subsequente (tradução, expansão ou rotação) está em andamento.

// 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

Aplica-se a

Confira também