Table of Contents

Interface ITouchPoint

Namespace
AngleSharp.Html.Dom.Events
Assembly
AngleSharp.dll

Represents the interface for the data of a single touch point.

[DomName("Touch")]
public interface ITouchPoint
Extension Methods

Properties

ClientX

Gets the x-coordinate relative to the client.

[DomName("clientX")]
int ClientX { get; }

Property Value

int

ClientY

Gets the y-coordinate relative to the client.

[DomName("clientY")]
int ClientY { get; }

Property Value

int

Id

Gets the id of the touch point.

[DomName("identifier")]
int Id { get; }

Property Value

int

PageX

Gets the x-coordinate relative to the page.

[DomName("pageX")]
int PageX { get; }

Property Value

int

PageY

Gets the y-coordinate relative to the page.

[DomName("pageY")]
int PageY { get; }

Property Value

int

ScreenX

Gets the x-coordinate relative to the screen.

[DomName("screenX")]
int ScreenX { get; }

Property Value

int

ScreenY

Gets the y-coordinate relative to the screen.

[DomName("screenY")]
int ScreenY { get; }

Property Value

int

Target

Gets the target of the touch point.

[DomName("target")]
IEventTarget Target { get; }

Property Value

IEventTarget