Class
GestureEventArgs

Provides data for gesture events that occur when touch or stylus gestures are performed on a control.

Definition

Namespace:Telerik.WinControls

Assembly:Telerik.WinControls.dll

Syntax:

cs-api-definition
public class GestureEventArgs : EventArgs

Inheritance: objectEventArgsGestureEventArgs

Derived Classes: PanGestureEventArgsPressAndTapGestureEventArgsRotateGestureEventArgsZoomGestureEventArgs

Inherited Members EventArgs.Empty

Properties

GestureType

The type of the gesture that has occurred.

Declaration

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

Property Value

GestureType

Handled

[true] if the event has been handled and should not be processed further, [false] otherwise.

Declaration

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

Property Value

bool

IsBegin

[true] if this is the beginning of the gesture, [false] otherwise.

Declaration

cs-api-definition
public bool IsBegin { get; }

Property Value

bool

IsEnd

[true] if this is the end of the gesture, [false] otherwise.

Declaration

cs-api-definition
public bool IsEnd { get; }

Property Value

bool

IsInertia

[true] if the event was caused by inertia, [false] otherwise.

Declaration

cs-api-definition
public bool IsInertia { get; }

Property Value

bool

Location

The location of the gesture.

Declaration

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

Property Value

Point