TouchList
Overview
The TouchList interface represents a list of contact points on a touch surface. For example, if the user has three fingers on the touch surface (such as a screen or trackpad), the corresponding TouchList object would have one Touch object for each finger, for a total of three entries.
Location
- Reference: Island.fx
- Namespace: RemObjects.Elements.WebAssembly.DOM
- Platforms: WebAssembly
Properties
item
property item[parindex: Int32]: dynamic read write;
dynamic item[Int32 parindex] { get; set; }
subscript item(_ parindex: Int32) -> dynamic { get{} set{} }
dynamic item[Int32 parindex] { __get; __set; }
Property item(parindex As Int32) As dynamic
length
property length: Int32 read;
Int32 length { get; }
var length: Int32 { get{} }
Int32 length { __get; }
ReadOnly Property length() As Int32