Skip to main content
Version: 3.5

TouchEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Represents the method that will handle the TouchStart, TouchEnd, TouchMove, TouchCancel events.

public delegate void TouchEventHandler(Object sender, TouchEventArgs e)

Parameters

NameTypeDescription
senderObjectThe source of the event.
eTouchEventArgsA TouchEventArgs that contains the event data.

Fired By

NameDescription
Control.TouchStartFired when a touch point is placed on the touch surface.
Control.TouchEndFired when a touch point is removed from the touch surface.
Control.TouchCancelFired when a touch point has been disrupted in an implementation-specific manner (for example, too many touch points are created).
Control.TouchMoveFired when a touch point is moved along the touch surface.