Share via


PhysicalGestureRecognizer.ManipulationUpdated Event

Definition

/// [Windows.Foundation.Metadata.Experimental]
/// [add: Windows.Foundation.Metadata.Experimental]
/// [remove: Windows.Foundation.Metadata.Experimental]
// Register
event_token ManipulationUpdated(TypedEventHandler<PhysicalGestureRecognizer, ManipulationUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
PhysicalGestureRecognizer::ManipulationUpdated_revoker ManipulationUpdated(auto_revoke_t, TypedEventHandler<PhysicalGestureRecognizer, ManipulationUpdatedEventArgs const&> const& handler) const;
[Windows.Foundation.Metadata.Experimental]
[add: Windows.Foundation.Metadata.Experimental]
[remove: Windows.Foundation.Metadata.Experimental]
public event TypedEventHandler<PhysicalGestureRecognizer,ManipulationUpdatedEventArgs> ManipulationUpdated;
function onManipulationUpdated(eventArgs) { /* Your code */ }
physicalGestureRecognizer.addEventListener("manipulationupdated", onManipulationUpdated);
physicalGestureRecognizer.removeEventListener("manipulationupdated", onManipulationUpdated);
- or -
physicalGestureRecognizer.onmanipulationupdated = onManipulationUpdated;
Public Custom Event ManipulationUpdated As TypedEventHandler(Of PhysicalGestureRecognizer, ManipulationUpdatedEventArgs) 

Event Type

Attributes

Applies to