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
ClientY
Gets the y-coordinate relative to the client.
[DomName("clientY")]
int ClientY { get; }
Property Value
Id
Gets the id of the touch point.
[DomName("identifier")]
int Id { get; }
Property Value
PageX
Gets the x-coordinate relative to the page.
[DomName("pageX")]
int PageX { get; }
Property Value
PageY
Gets the y-coordinate relative to the page.
[DomName("pageY")]
int PageY { get; }
Property Value
ScreenX
Gets the x-coordinate relative to the screen.
[DomName("screenX")]
int ScreenX { get; }
Property Value
ScreenY
Gets the y-coordinate relative to the screen.
[DomName("screenY")]
int ScreenY { get; }
Property Value
Target
Gets the target of the touch point.
[DomName("target")]
IEventTarget Target { get; }