Share via


SpatialGestureRecognizer.ManipulationStarted Ereignis

Definition

Tritt auf, wenn eine Interaktion zu einer Manipulationsgeste wird.

// Register
event_token ManipulationStarted(TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationStartedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::ManipulationStarted_revoker ManipulationStarted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialManipulationStartedEventArgs> ManipulationStarted;
function onManipulationStarted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("manipulationstarted", onManipulationStarted);
spatialGestureRecognizer.removeEventListener("manipulationstarted", onManipulationStarted);
- or -
spatialGestureRecognizer.onmanipulationstarted = onManipulationStarted;
Public Custom Event ManipulationStarted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialManipulationStartedEventArgs) 

Ereignistyp

Hinweise

Bei Handinteraktionen wird das SpatialManipulationStartedEventArgs-Ereignis ausgelöst, wenn ein Finger gedrückt wird und sich dann außerhalb der kleinen Manipulationszone bewegt.

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

Gilt für: