type TCefSimulatedTouchPoint = record
Structure representing a simulated touch point.
<see href="https://chromedevtools.github.io/devtools-protocol/tot/Input/#type-TouchPoint">See the Input.TouchPoint type in the DevTools docs.)
![]() |
id: integer; |
![]() |
x: integer; |
![]() |
y: integer; |
![]() |
radiusX: single; |
![]() |
radiusY: single; |
![]() |
rotationAngle: single; |
![]() |
force: single; |
![]() |
tangentialPressure: single; |
![]() |
tiltX: integer; |
![]() |
tiltY: integer; |
![]() |
twist: integer; |
![]() |
id: integer; |
Identifier used to track touch sources between events, must be unique within an event. This is an optional value. |
![]() |
x: integer; |
X coordinate of the event relative to the main frame's viewport in CSS pixels. |
![]() |
y: integer; |
Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to the top of the viewport and Y increases as it proceeds towards the bottom of the viewport. |
![]() |
radiusX: single; |
X radius of the touch area (default: 1.0). This is an optional value. |
![]() |
radiusY: single; |
Y radius of the touch area (default: 1.0). This is an optional value. |
![]() |
rotationAngle: single; |
Rotation angle (default: 0.0). This is an optional value. |
![]() |
force: single; |
Force (default: 1.0). This is an optional value. |
![]() |
tangentialPressure: single; |
The normalized tangential pressure, which has a range of [-1,1] (default: 0). This is an optional value. |
![]() |
twist: integer; |
The clockwise rotation of a pen stylus around its own major axis, in degrees in the range [0,359] (default: 0). This is an optional value. |