TouchEvent
Represents the event arguments for a touch event.
Gets a list with changed touch points.
Gets if the alt key is pressed.
Gets if the control key is pressed.
Gets if the meta key is pressed.
Gets if the shift key is pressed.
Gets a list with touch points over the target.
Gets a list with all active touch points.
public TouchEvent()
Creates a new event.
public TouchEvent(string type, bool bubbles = false, bool cancelable = false, IWindow view = null, int detail = 0, ITouchList touches = null, ITouchList targetTouches = null, ITouchList changedTouches = null, bool ctrlKey = false, bool altKey = false, bool shiftKey = false, bool metaKey = false)
Creates a new event and initializes it.
public void Init(string type, bool bubbles, bool cancelable, IWindow view, int detail, ITouchList touches, ITouchList targetTouches, ITouchList changedTouches, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
Initializes the focus event.