Class TouchMode
Represents the touch mode of a control.
Inheritance
Namespace: Telerik.Windows.Input.Touch
Assembly: Telerik.Windows.Controls.dll
Syntax
public sealed class TouchMode : Enum
Fields
HitTestHidden
The element is not visible for touch input. Touch events will be raised for the element's parents as if this element is not in the visual tree.
Declaration
public const TouchMode HitTestHidden
Field Value
TouchMode
|
HitTestVisible
The element is visible for touch input and events will route normally.
Declaration
public const TouchMode HitTestVisible
Field Value
TouchMode
|
Locked
The element is visible for touch input and it will capture the touch device on touch down and will mark all touch events as handled, thus preventing event routing.
Declaration
public const TouchMode Locked
Field Value
TouchMode
|
None
The element will suppress all touch events. No touch events will be raised for touch input within the boundaries of the element.
Declaration
public const TouchMode None
Field Value
TouchMode
|
value__
Declaration
public int value__
Field Value
System.Int32
|