From f02270a119effb60c19fc17cf29eb21c8962cad2 Mon Sep 17 00:00:00 2001 From: ningning Date: Fri, 18 Aug 2023 09:02:36 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md. Signed-off-by: ningning --- .../reference/apis/js-apis-inputeventclient.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md b/zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md index e5f61c963a..788500960d 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md +++ b/zh-cn/application-dev/reference/apis/js-apis-inputeventclient.md @@ -8,20 +8,17 @@ > > - 本模块接口为系统接口。 - ## 导入模块 - ```js import inputEventClient from '@ohos.multimodalInput.inputEventClient'; ``` - ## inputEventClient.injectEvent injectEvent({KeyEvent: KeyEvent}): void -按键注入,当前仅支持返回键(键值2)注入。 +按键注入,当前仅支持返回键/KEYCODE_BACK(键码值2)注入。 **系统能力:** SystemCapability.MultimodalInput.Input.InputSimulator @@ -55,7 +52,6 @@ try { } ``` - ## KeyEvent 按键注入描述信息。 @@ -64,8 +60,8 @@ try { | 名称 | 类型 | 可读 | 可写 | 说明 | | --------- | ------ | ---- | ---- | ------- | -| isPressed | boolean | 是 | 否 | 按键是否按下。 | -| keyCode | number | 是 | 否 | 按键键值,当前只支持back键。 | -| keyDownDuration | number | 是 | 否 | 按键按下持续时间。 | -| isIntercepted | boolean | 是 | 否 | 按键是否可以被拦截。 | +| isPressed | boolean | 是 | 否 | 按键是否按下。
ture表示按键按下,false表示按键抬起。 | +| keyCode | number | 是 | 否 | 按键键码值。当前仅支持返回键/KEYCODE_BACK键。 | +| keyDownDuration | number | 是 | 否 | 按键按下持续时间,单位为微秒(μs)。 | +| isIntercepted | boolean | 是 | 否 | 按键是否可以被拦截。
ture表示可以被拦截,false表示不可被拦截。 | -- GitLab