Class
GestureRecognizerEventArgs

Provides data for the gesture recognizers.

Definition

Namespace:Telerik.Windows.Input.Touch

Assembly:Telerik.Windows.Controls.dll

Syntax:

cs-api-definition
public class GestureRecognizerEventArgs : EventArgs

Inheritance: objectEventArgsGestureRecognizerEventArgs

Inherited Members EventArgs.Empty

Properties

Element

Gets the sender element for which the event occurred.

Declaration

cs-api-definition
public UIElement Element { get; }

Property Value

UIElement

Handled

Gets or sets a value indicating whether the event is handled by a gesture recognizer.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

Position

Gets the position of the associated touch point, relative to the sender element.

Declaration

cs-api-definition
public Point Position { get; }

Property Value

Point

TouchEventArgs

Gets the touch event args associated with the original touch event.

Declaration

cs-api-definition
public TouchEventArgs TouchEventArgs { get; }

Property Value

TouchEventArgs

TouchId

Gets the associated touch device Id.

Declaration

cs-api-definition
public int TouchId { get; }

Property Value

int

TouchPoint

Gets the touch point, relative to the sender element.

Declaration

cs-api-definition
public TouchPoint TouchPoint { get; }

Property Value

TouchPoint