GestureRecognizer.ManipulationUpdated Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- ManipulationUpdatedEventArgs
- Touch interactions - Manipulation events
- User interaction mode sample
- Focus visuals sample
- Input: Device capabilities sample
- Input: Simplified ink sample
- Input: Windows 8 gestures sample
- Input: XAML user input events sample
- XAML scrolling, panning, and zooming sample
- DirectX touch input sample
- Input: Manipulations and gestures (C++) sample
- Input: Touch hit testing sample
- Input source identification sample
- Touch injection sample
- Win32 touch hit-testing sample