C# Class WaveEngine.Components.Gestures.GestureEventArgs

Provides information about a gesture event when such is raised.
Inheritance: System.EventArgs
Show file Open project: WaveEngine/Components Class Usage Examples

Public Properties

Property Type Description
GestureSample GestureSample

Public Methods

Method Description
GestureEventArgs ( GestureSample sample ) : System

Initializes a new instance of the GestureEventArgs class.

Method Details

GestureEventArgs() public method

Initializes a new instance of the GestureEventArgs class.
public GestureEventArgs ( GestureSample sample ) : System
sample GestureSample The gesture that was performed.
return System

Property Details

GestureSample public property

Relevant information about the gesture performed. See GestureSample for more information.
public GestureSample,WaveEngine.Components.Gestures GestureSample
return GestureSample