Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
92026b34
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
92026b34
编写于
5月 30, 2022
作者:
S
shaoziyun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
格式修改
Signed-off-by:
N
shaoziyun
<
shaoziyun@huawei.com
>
上级
330ac410
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
23 addition
and
106 deletion
+23
-106
zh-cn/application-dev/reference/apis/js-apis-inputevent.md
zh-cn/application-dev/reference/apis/js-apis-inputevent.md
+4
-6
zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md
zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md
...n/application-dev/reference/apis/js-apis-inputkeyevent.md
+7
-22
zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md
...application-dev/reference/apis/js-apis-inputmouseevent.md
+4
-36
zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md
...application-dev/reference/apis/js-apis-inputtouchevent.md
+5
-39
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-inputevent.md
浏览文件 @
92026b34
# 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
zh-cn/application-dev/reference/apis/js-apis-inputkeycode.md
浏览文件 @
92026b34
# 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
| 名称 | 参数类型 | 可读 | 可写 | 描述 |
...
...
zh-cn/application-dev/reference/apis/js-apis-inputkeyevent.md
浏览文件 @
92026b34
# 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
| 名称 | 参数类型 | 可读 | 可写 | 描述 |
...
...
zh-cn/application-dev/reference/apis/js-apis-inputmouseevent.md
浏览文件 @
92026b34
# 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
| 名称 | 参数类型 | 可读 | 可写 | 描述 |
...
...
zh-cn/application-dev/reference/apis/js-apis-inputtouchevent.md
浏览文件 @
92026b34
# 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
| 名称 | 参数类型 | 可读 | 可写 | 描述 |
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录