Class GestureEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class GestureEventArgs : EventArgs
Properties
GestureType
The type of the gesture that has occured.
Declaration
public GestureType GestureType { get; }
Property Value
GestureType
|
Handled
[true] if the event has been handled and should not be proccessed further, [false] otherwise.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
IsBegin
[true] if this is the beggining of the gesture, [false] otherwise.
Declaration
public bool IsBegin { get; }
Property Value
System.Boolean
|
IsEnd
[true] if this is the end of the gesture, [false] otherwise.
Declaration
public bool IsEnd { get; }
Property Value
System.Boolean
|
IsInertia
[true] if the event was caused by inertia, [false] otherwise.
Declaration
public bool IsInertia { get; }
Property Value
System.Boolean
|
Location
The location of the gesture.
Declaration
public Point Location { get; }
Property Value
System.Drawing.Point
|