diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputevent.md index e7ad2eba587afc2b811f52a731c56745665b2446..5aebb9ca5b610dc39260c74f80755a9537156d61 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputevent.md @@ -1,24 +1,22 @@ -# InputEvent +# 输入事件 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 - ## 导入模块 ```ts import InputEvent from '@ohos.multimodalInput.inputEvent'; ``` -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core - | 名称 | 参数类型 | 可读 | 可写 | 描述 | | -------- | -------- | -------- | -------- | -------- | | id | number | 是 | 否 | 由服务端生成全局唯一事件id | | deviceId | number | 是 | 否 | 上报输入事件的设备id | -| actionTime | number | 是 | 否 | 事件发生时间 | +| actionTime | number | 是 | 否 | 输入事件的上报时间 | | screenId | number | 是 | 否 | 目标屏幕id | | windowId | number | 是 | 否 | 目标窗口id | \ No newline at end of file diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md b/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md index e5c5b8af61f02077255d7803a3e67dd7ab44441f..e379d1c4f21d39b3456421174c18194902116174 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md @@ -1,4 +1,6 @@ -# KeyCode +# 键值 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -9,8 +11,6 @@ import {KeyCode} from '@ohos.multimodalInput.keyCode' ``` -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md index 81ca673e5d45e93ff11f505b07678f3bf6637784..df65452fd0ab207a5b3c1d541a681bce77aba84d 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md @@ -1,4 +1,6 @@ -# Action +# 按键输入事件 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -6,30 +8,21 @@ ## 导入模块 ```ts -import {Action} from '@ohos.multimodalInput.keyEvent'; +import {Action,Key,KeyEvent} from '@ohos.multimodalInput.keyEvent'; ``` -## 属性 +# Action **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | | -------- | -------- | -------- | -------- | -------- | | CANCEL | number | 是 | 否 | 取消 | -| DOWN | number | 是 | 否 | 按钮按下 | -| UP | number | 是 | 否 | 按钮抬起 | - +| DOWN | number | 是 | 否 | 按下按钮 | +| UP | number | 是 | 否 | 抬起按钮 | # Key -## 导入模块 - -```ts -import {Key} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -40,14 +33,6 @@ import {Key} from '@ohos.multimodalInput.mouseEvent'; # KeyEvent -## 导入模块 - -```ts -import {KeyEvent} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md index 8c5c5bf824772bcc85fd3a267cf6ed69cb8093b5..b3bd0a489a9a58ee83841d1105beea0b7758d2ab 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md @@ -1,4 +1,5 @@ -# Action +# 鼠标输入事件 + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -6,10 +7,10 @@ ## 导入模块 ```ts -import {Action} from '@ohos.multimodalInput.mouseEvent'; +import {Action,Button,Axis,AxisValue,MouseEvent} from '@ohos.multimodalInput.mouseEvent'; ``` -## 属性 +# Action **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core @@ -26,14 +27,6 @@ import {Action} from '@ohos.multimodalInput.mouseEvent'; # Button -## 导入模块 - -```ts -import {Button} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -47,17 +40,8 @@ import {Button} from '@ohos.multimodalInput.mouseEvent'; | BACK | number | 是 | 否 | 鼠标后退键 | | TASK | number | 是 | 否 | 鼠标任务键 | - # Axis -## 导入模块 - -```ts -import {Axis} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -69,14 +53,6 @@ import {Axis} from '@ohos.multimodalInput.mouseEvent'; # AxisValue -## 导入模块 - -```ts -import {AxisValue} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -87,14 +63,6 @@ import {AxisValue} from '@ohos.multimodalInput.mouseEvent'; # MouseEvent -## 导入模块 - -```ts -import {MouseEvent} from '@ohos.multimodalInput.mouseEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md b/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md index 54f242b68407023a93cba0eb6c8db2220da3722a..06f9a7e0fea4f3a3ef5436feb9acdda232183090 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md @@ -1,4 +1,6 @@ -# Action +# 触摸输入事件 + + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -6,10 +8,10 @@ ## 导入模块 ```ts -import {Action} from '@ohos.multimodalInput.ToucEvent'; +import {Action,ToolType,SourceType,Touch,TouchEvent} from '@ohos.multimodalInput.ToucEvent'; ``` -## 属性 +# Action **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core @@ -20,17 +22,8 @@ import {Action} from '@ohos.multimodalInput.ToucEvent'; | MOVE | number | 是 | 否 | 触摸移动 | | UP | number | 是 | 否 | 触摸抬起 | - # ToolType -## 导入模块 - -```ts -import {ToolType} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -44,17 +37,8 @@ import {ToolType} from '@ohos.multimodalInput.ToucEvent'; | MOUSE | number | 是 | 否 | 鼠标 | | LENS | number | 是 | 否 | 透镜 | - # SourceType -## 导入模块 - -```ts -import {SourceType} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -63,17 +47,8 @@ import {SourceType} from '@ohos.multimodalInput.ToucEvent'; | PEN | number | 是 | 否 | 手写笔 | | TOUCH_PAD | number | 是 | 否 | 触摸板 | - # Touch -## 导入模块 - -```ts -import {Touch} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 | @@ -97,17 +72,8 @@ import {Touch} from '@ohos.multimodalInput.ToucEvent'; | rawY | number | 是 | 否 | 输入设备上的y坐标 | | toolType | number | 是 | 否 | 工具类型 | - # TouchEvent -## 导入模块 - -```ts -import {TouchEvent} from '@ohos.multimodalInput.ToucEvent'; -``` - -## 属性 - **系统能力**:以下各项对应的系统能力均为SystemCapability.MultimodalInput.Input.Core | 名称 | 参数类型 | 可读 | 可写 | 描述 |