diff --git a/zh-cn/application-dev/reference/apis/js-apis-intentioncode.md b/zh-cn/application-dev/reference/apis/js-apis-intentioncode.md new file mode 100644 index 0000000000000000000000000000000000000000..76f56c943967d4ef5e13d85e362e9a68a976dbce --- /dev/null +++ b/zh-cn/application-dev/reference/apis/js-apis-intentioncode.md @@ -0,0 +1,35 @@ +# @ohos.multimodalInput.intentionCode (意图事件) + +将键盘输入设备的原始事件映射为归一化交互的意图事件,如键盘上空格键映射后的事件为INTENTION_SELECT,意图为选中。 + +> **说明:** +> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 + +## 导入模块 + +```js +import IntentionCode from '@ohos.multimodalInput.intentionCode'; +``` + +## IntentionCode + +意图事件枚举值。 + +**系统能力**:SystemCapability.MultimodalInput.Input.Core + +| 名称 | 值 | 说明 | +| -------------------------------- | ------ | --------------------------- | +| INTENTION_UNKNOWN | -1 | 未知意图 | +| INTENTION_UP | 1 | 上 | +| INTENTION_DOWN | 2 | 下 | +| INTENTION_LEFT | 3 | 左 | +| INTENTION_RIGHT | 4 | 右 | +| INTENTION_SELECT | 5 | 选中 | +| INTENTION_ESCAPE | 6 | 逃逸 | +| INTENTION_BACK | 7 | 返回 | +| INTENTION_FORWARD | 8 | 前进 | +| INTENTION_MENU | 9 | 菜单 | +| INTENTION_PAGE_UP | 11 | 上一页 | +| INTENTION_PAGE_DOWN | 12 | 下一页 | +| INTENTION_ZOOM_OUT | 13 | 放大键 | +| INTENTION_ZOOM_IN | 14 | 缩小键 |