GestureRecognizer.ManipulationUpdated Event

Definition

Occurs after one or more input points have been initiated and subsequent motion (translation, expansion, or rotation) is under way.

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

Event Type

Applies to

See also