• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# @ohos.accessibility.GesturePoint (手势触摸点)
2
3GesturePoint表示手势触摸点。
4
5本模块用于创建辅助功能注入手势所需的手势路径的触摸点信息。
6
7> **说明:**
8>
9> 本模块首批接口从API version 9开始支持,后续版本的新增接口,采用上角标单独标记接口的起始版本。
10
11## 导入模块
12
13```ts
14import GesturePoint from '@ohos.accessibility.GesturePoint';
15```
16
17## GesturePoint
18
19表示手势触摸点。
20
21**系统能力**:以下各项对应的系统能力均为 SystemCapability.BarrierFree.Accessibility.Core
22
23### 属性
24
25| 名称        | 类型   | 可读   | 可写   | 说明      |
26| --------- | ------ | ---- | ---- | ------- |
27| positionX | number | 是    | 是    | 触摸点X坐标。 |
28| positionY | number | 是    | 是    | 触摸点Y坐标。 |
29
30### constructor
31
32constructor(positionX: number, positionY: number);
33
34构造函数。
35
36**系统能力**:SystemCapability.BarrierFree.Accessibility.Core
37
38**参数:**
39
40| 参数名 | 类型 | 必填 | 说明 |
41| -------- | -------- | -------- | -------- |
42| positionX | number | 是 | 触摸点X坐标。 |
43| positionY | number | 是  | 触摸点Y坐标。 |
44
45**示例:**
46
47```ts
48let gesturePoint = new GesturePoint.GesturePoint(1, 2);
49```
50