TouchEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the TouchStart, TouchEnd, TouchMove, TouchCancel events.
- C#
- VB.NET
public delegate void TouchEventHandler(Object sender, TouchEventArgs e)
Public Delegate Sub TouchEventHandler(ByVal sender As [Object], ByVal e As TouchEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | TouchEventArgs | A TouchEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| Control.TouchStart | Fired when a touch point is placed on the touch surface. |
| Control.TouchEnd | Fired when a touch point is removed from the touch surface. |
| Control.TouchCancel | Fired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created). |
| Control.TouchMove | Fired when a touch point is moved along the touch surface. |