Class GestureRecognizerEventArgs
Provides data for the gesture recognizers.
Inheritance
Namespace: Telerik.Windows.Input.Touch
Assembly: Telerik.Windows.Controls.dll
Syntax
public class GestureRecognizerEventArgs : EventArgs
Properties
Element
Gets the sender element for which the event occurred.
Declaration
public UIElement Element { get; }
Property Value
System.Windows.UIElement
|
Handled
Gets or sets a value indicating whether the event is handled by a gesture recognizer.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
Position
Gets the position of the associated touch point, relative to the sender element.
Declaration
public Point Position { get; }
Property Value
System.Windows.Point
|
TouchEventArgs
Gets the touch event args associated with the original touch event.
Declaration
public TouchEventArgs TouchEventArgs { get; }
Property Value
TouchEventArgs
|
TouchId
Gets the associated touch device Id.
Declaration
public int TouchId { get; }
Property Value
System.Int32
|
TouchPoint
Gets the touch point, relative to the sender element.
Declaration
public TouchPoint TouchPoint { get; }
Property Value
System.Windows.Input.TouchPoint
|