TouchEvent

Overview

The TouchEvent interface represents an UIEvent which is sent when the state of contacts with a touch-sensitive surface changes. This surface can be a touch screen or trackpad, for example. The event can describe one or more points of contact with the screen and includes support for detecting movement, addition and removal of contact points, and so forth.

Location


Properties


altKey

 

property altKey: Boolean read;

 

Boolean altKey { get; }

 

var altKey: Boolean { get{} }

 

Boolean altKey { __get; }

 

ReadOnly Property altKey() As Boolean

changedTouches

 

property changedTouches: TouchList read;

 

TouchList changedTouches { get; }

 

var changedTouches: TouchList { get{} }

 

TouchList changedTouches { __get; }

 

ReadOnly Property changedTouches() As TouchList

ctrlKey

 

property ctrlKey: Boolean read;

 

Boolean ctrlKey { get; }

 

var ctrlKey: Boolean { get{} }

 

Boolean ctrlKey { __get; }

 

ReadOnly Property ctrlKey() As Boolean

metaKey

 

property metaKey: Boolean read;

 

Boolean metaKey { get; }

 

var metaKey: Boolean { get{} }

 

Boolean metaKey { __get; }

 

ReadOnly Property metaKey() As Boolean

shiftKey

 

property shiftKey: Boolean read;

 

Boolean shiftKey { get; }

 

var shiftKey: Boolean { get{} }

 

Boolean shiftKey { __get; }

 

ReadOnly Property shiftKey() As Boolean

targetTouches

 

property targetTouches: TouchList read;

 

TouchList targetTouches { get; }

 

var targetTouches: TouchList { get{} }

 

TouchList targetTouches { __get; }

 

ReadOnly Property targetTouches() As TouchList

touches

 

property touches: TouchList read;

 

TouchList touches { get; }

 

var touches: TouchList { get{} }

 

TouchList touches { __get; }

 

ReadOnly Property touches() As TouchList