ITouchList
Represents a list with touch points.
using AngleSharp.Attributes;
namespace AngleSharp.Dom.Events
{
[DomName("TouchList")]
public interface ITouchList
{
[DomName("length")]
int Length { get; }
[DomAccessor(Accessors.Getter)]
[DomName("item")]
ITouchPoint this[int index] { get; }
}
}