Share via


ManipulatableModel.ManipulationCompleted Event

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

Syntax

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

// addEventListener syntax
manipulatableModel.addEventListener("manipulationcompleted", onManipulationCompleted);
manipulatableModel.removeEventListener("manipulationcompleted", onManipulationCompleted);

- or -

manipulatableModel.onmanipulationcompleted = onManipulationCompleted;

Requirements

Namespace: Microsoft.Kinect.Toolkit.Input

Assembly: (in )

See also

Reference

ManipulatableModel Class
Microsoft.Kinect.Toolkit.Input Namespace