Share via


ManipulatableModel.ManipulationStarted Event

Occurs when a manipulation gesture associated with the Kinect Toolkit input element starts.

Syntax

public:
event TypedEventHandler<IManipulatableModel, KinectManipulationStartedEventArgs>^ ManipulationStarted {
         EventRegistrationToken add (TypedEventHandler<IManipulatableModel, KinectManipulationStartedEventArgs>^ value);
         void remove (EventRegistrationToken token);
}
public event TypedEventHandler<IManipulatableModel, KinectManipulationStartedEventArgs> ManipulationStarted
function onManipulationStarted(eventArgs) { /* Your code */ }

// addEventListener syntax
manipulatableModel.addEventListener("manipulationstarted", onManipulationStarted);
manipulatableModel.removeEventListener("manipulationstarted", onManipulationStarted);

- or -

manipulatableModel.onmanipulationstarted = onManipulationStarted;

Requirements

Namespace: Microsoft.Kinect.Toolkit.Input

Assembly: (in )

See also

Reference

ManipulatableModel Class
Microsoft.Kinect.Toolkit.Input Namespace