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