• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# @ohos.multimodalInput.intentionCode (Intention Code)
2
3The **intentionCode** module maps the original events of the keyboard to intention codes for normalized interaction. For example, if the mapped event of the space bar on the keyboard is **INTENTION_SELECT**, the intent is to select an item.
4
5>  **NOTE**
6> The initial APIs of this module are supported since API version 10. Newly added APIs will be marked with a superscript to indicate their earliest API version.
7
8## Modules to Import
9
10```js
11import IntentionCode from '@ohos.multimodalInput.intentionCode';
12```
13
14## IntentionCode
15
16Enumerates intention codes.
17
18**System capability**: SystemCapability.MultimodalInput.Input.Core
19
20| Name                              | Value  |  Description       |
21| -------------------------------- | ------ | --------------------------- |
22| INTENTION_UNKNOWN                |  -1 | Unknown intent                 |
23| INTENTION_UP                     |  1 | Up                    |
24| INTENTION_DOWN                   |  2 | Down                    |
25| INTENTION_LEFT                   |  3 | Left                    |
26| INTENTION_RIGHT                  |  4 | Right                    |
27| INTENTION_SELECT                 |  5 | Select                           |
28| INTENTION_ESCAPE                 |  6 | Escape                           |
29| INTENTION_BACK                   |  7 | Back                           |
30| INTENTION_FORWARD                |  8 | Forward                           |
31| INTENTION_MENU                   |  9 | Menu                           |
32| INTENTION_PAGE_UP                |  11 | Page up                        |
33| INTENTION_PAGE_DOWN              |  12 | Page down                        |
34| INTENTION_ZOOM_OUT               |  13 | Zoom out                        |
35| INTENTION_ZOOM_IN                |  14 | Zoom in                        |
36