Share via


ManipulatableModel.ManipulationUpdated Event

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

Syntax

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

// addEventListener syntax
manipulatableModel.addEventListener("manipulationupdated", onManipulationUpdated);
manipulatableModel.removeEventListener("manipulationupdated", onManipulationUpdated);

- or -

manipulatableModel.onmanipulationupdated = onManipulationUpdated;

Requirements

Namespace: Microsoft.Kinect.Toolkit.Input

Assembly: (in )

See also

Reference

ManipulatableModel Class
Microsoft.Kinect.Toolkit.Input Namespace