Interface ITouchList
- Namespace
- AngleSharp.Html.Dom.Events
- Assembly
- AngleSharp.dll
Represents a list with touch points.
[DomName("TouchList")]
public interface ITouchList
- Extension Methods
Properties
this[int]
Gets the data of the touch point at the given index.
[DomAccessor(Accessors.Getter)]
[DomName("item")]
ITouchPoint this[int index] { get; }
Parameters
index
intThe index of the touch point.
Property Value
- ITouchPoint
The touch point at the index.
Length
Gets the number of contained touch points.
[DomName("length")]
int Length { get; }