Share via


KinectGestureSettings Enumeration

Specifies the interactions that are supported by an Kinect for Windows application.

Syntax

[FlagsAttribute]
public enum class KinectGestureSettings
[FlagsAttribute]
public enum KinectGestureSettings
var kinectGestureSettings = WindowsPreview.Kinect.Input.KinectGestureSettings.kinectHold;

Members

Member Value Description
KinectHold 65536 

Enable support for the press and hold gesture through Kinect gestures. The Holding event is raised if a time threshold is crossed before the user moves the hand cursor away from the UI element.

This gesture can be used to display a context menu.

ManipulationScale 2048  Enable support for the pinch or stretch gesture through pointer input.

These gestures can be used for optical or semantic zoom and resizing an object. The ManipulationStarted, ManipulationUpdated, and ManipulationCompleted events are all raised during the course of this interaction.

ManipulationTranslateInertia 4096  Enable support for scaling inertia after the pinch or stretch gesture (through pointer input) is complete. The ManipulationInertiaStarting event is raised if inertia is enabled.
ManipulationTranslateRailsX 256  Enable support for the slide gesture through pointer input, on the horizontal axis using rails (guides). The ManipulationStarted, ManipulationUpdated, and ManipulationCompleted events are all raised during the course of this interaction.

This gesture can be used for rearranging objects.

ManipulationTranslateRailsY 512  Enable support for the slide gesture through pointer input, on the vertical axis using rails (guides). The ManipulationStarted, ManipulationUpdated, and ManipulationCompleted events are all raised during the course of this interaction.

This gesture can be used for rearranging objects.

ManipulationTranslateX 64  Enable support for the slide gesture through pointer input, on the horizontal axis. The ManipulationStarted, ManipulationUpdated, and ManipulationCompleted events are all raised during the course of this interaction.

This gesture can be used for rearranging objects.

ManipulationTranslateY 128  Enable support for the slide gesture through pointer input, on the vertical axis. The ManipulationStarted, ManipulationUpdated, and ManipulationCompleted events are all raised during the course of this interaction.

This gesture can be used for rearranging objects.

None Disable support for gestures and manipulations.
Tap Enable support for the tap gesture.

Requirements

Namespace: WindowsPreview.Kinect.Input

Metadata: windowspreview.kinect.winmd

See also

Reference

WindowsPreview.Kinect.Input Namespace