@ohos.accessibility.GesturePoint
The GesturePoint module provides APIs for creating gesture touch point information required for an accessibility application to inject gestures.
NOTE
The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version.
Modules to Import
import GesturePoint from '@ohos.accessibility.GesturePoint';
GesturePoint
Defines a gesture touch point.
System capability: SystemCapability.BarrierFree.Accessibility.Core
Attributes
Name | Type | Readable | Writable | Description |
---|---|---|---|---|
positionX | number | Yes | Yes | X coordinate of the touch point. |
positionY | number | Yes | Yes | Y coordinate of the touch point. |
constructor
constructor(positionX: number, positionY: number);
Constructor used to create a GesturePoint object.
System capability: SystemCapability.BarrierFree.Accessibility.Core
Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
positionX | number | Yes | X coordinate of the touch point. |
positionY | number | Yes | Y coordinate of the touch point. |
Example
let gesturePoint = new GesturePoint.GesturePoint(1, 2);