Share via


SpatialGestureRecognizer.ManipulationCanceled Ereignis

Definition

Tritt auf, wenn eine Manipulationsgeste abgebrochen wird.

// Register
event_token ManipulationCanceled(TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationCanceledEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::ManipulationCanceled_revoker ManipulationCanceled(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationCanceledEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialManipulationCanceledEventArgs> ManipulationCanceled;
function onManipulationCanceled(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("manipulationcanceled", onManipulationCanceled);
spatialGestureRecognizer.removeEventListener("manipulationcanceled", onManipulationCanceled);
- or -
spatialGestureRecognizer.onmanipulationcanceled = onManipulationCanceled;
Public Custom Event ManipulationCanceled As TypedEventHandler(Of SpatialGestureRecognizer, SpatialManipulationCanceledEventArgs) 

Ereignistyp

Hinweise

Bei Handinteraktionen wird das SpatialManipulationCanceledEventArgs-Ereignis ausgelöst, wenn die ManipulationStarted-Hand während der Geste verloren geht.

Für Sprach- und Bewegungscontrollerinteraktionen wird dieses Ereignis nicht ausgelöst.

Gilt für: