GestureRecognizer.ManipulationCompleted Event

Definition

Occurs when the input points are lifted and all subsequent motion (translation, expansion, or rotation) through inertia has ended.

For more details on this API, please see the the UWP WinRT ManipulationCompleted topic.

// Register
event_token ManipulationCompleted(TypedEventHandler<GestureRecognizer, ManipulationCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GestureRecognizer::ManipulationCompleted_revoker ManipulationCompleted(auto_revoke_t, TypedEventHandler<GestureRecognizer, ManipulationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,ManipulationCompletedEventArgs> ManipulationCompleted;
function onManipulationCompleted(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("manipulationcompleted", onManipulationCompleted);
gestureRecognizer.removeEventListener("manipulationcompleted", onManipulationCompleted);
- or -
gestureRecognizer.onmanipulationcompleted = onManipulationCompleted;
Public Custom Event ManipulationCompleted As TypedEventHandler(Of GestureRecognizer, ManipulationCompletedEventArgs) 

Event Type

Applies to

See also