New to Telerik UI for WinFormsStart a free 30-day trial

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:

C#
public class GestureEventArgs : EventArgs

Inheritance: objectEventArgsGestureEventArgs

Derived Classes: PanGestureEventArgsPressAndTapGestureEventArgsRotateGestureEventArgsZoomGestureEventArgs

Inherited Members EventArgs.Empty

Properties

The type of the gesture that has occurred.

C#
public GestureType GestureType { get; }

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

C#
public bool Handled { get; set; }

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

C#
public bool IsBegin { get; }

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

C#
public bool IsEnd { get; }

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

C#
public bool IsInertia { get; }

The location of the gesture.

C#
public Point Location { get; }