js-apis-inputmethodengine.md 66.4 KB
Newer Older
Z
zhouyongfei 已提交
1 2
# 输入法服务

3 4
  本模块的作用是拉通应用和输入法,保证应用可以通过输入法进行文本输入,以及应用与输入法服务的绑定、应用对输入法的显示和隐藏请求、监听输入法当前的状态等等。

Z
zhouyongfei 已提交
5 6 7 8 9 10
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

## 导入模块

```
11
import inputMethodEngine from '@ohos.inputmethodengine';
Z
zhouyongfei 已提交
12 13 14 15 16 17
```

## inputMethodEngine

常量值。

18
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
19

Z
zhouyongfei 已提交
20 21
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
Z
刷新  
zhouyongfei 已提交
22 23 24 25 26 27 28 29 30 31
| ENTER_KEY_TYPE_UNSPECIFIED | number | 是 | 否 | 无功能键。 |
| ENTER_KEY_TYPE_GO | number | 是 | 否 | “前往”功能键。 |
| ENTER_KEY_TYPE_SEARCH | number | 是 | 否 | “搜索”功能键。 |
| ENTER_KEY_TYPE_SEND | number | 是 | 否 | “发送”功能键。 |
| ENTER_KEY_TYPE_NEXT | number | 是 | 否 | “下一个”功能键。 |
| ENTER_KEY_TYPE_DONE | number | 是 | 否 | “回车”功能键。 |
| ENTER_KEY_TYPE_PREVIOUS | number | 是 | 否 | “前一个”功能键。 |
| PATTERN_NULL | number | 是 | 否 | 无特殊性编辑框。 |
| PATTERN_TEXT | number | 是 | 否 | 文本编辑框。 |
| PATTERN_NUMBER | number | 是 | 否 | 数字编辑框。 |
32
| PATTERN_PHONE | number | 是 | 否 | 电话号码编辑框。 |
Z
刷新  
zhouyongfei 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| PATTERN_DATETIME | number | 是 | 否 | 日期编辑框。 |
| PATTERN_EMAIL | number | 是 | 否 | 邮件编辑框。 |
| PATTERN_URI | number | 是 | 否 | 超链接编辑框。 |
| PATTERN_PASSWORD | number | 是 | 否 | 密码编辑框。 |
| OPTION_ASCII | number | 是 | 否 | 允许输入ASCII值。 |
| OPTION_NONE | number | 是 | 否 | 不指定编辑框输入属性。 |
| OPTION_AUTO_CAP_CHARACTERS | number | 是 | 否 | 允许输入字符。 |
| OPTION_AUTO_CAP_SENTENCES | number | 是 | 否 | 允许输入句子。 |
| OPTION_AUTO_WORDS | number | 是 | 否 | 允许输入单词。 |
| OPTION_MULTI_LINE | number | 是 | 否 | 允许输入多行。 |
| OPTION_NO_FULLSCREEN | number | 是 | 否 | 半屏样式。 |
| FLAG_SELECTING | number | 是 | 否 | 编辑框处于选择状态。 |
| FLAG_SINGLE_LINE | number | 是 | 否 | 编辑框为单行。 |
| DISPLAY_MODE_PART | number | 是 | 否 | 编辑框显示为半屏。 |
| DISPLAY_MODE_FULL | number | 是 | 否 | 编辑框显示为全屏。 |
Z
zhaolinglan 已提交
48 49 50 51 52
| CURSOR_UP<sup>9+</sup> | number | 是 | 否 | 光标上移。 |
| CURSOR_DOWN<sup>9+</sup> | number | 是 | 否 | 光标下移。 |
| CURSOR_LEFT<sup>9+</sup> | number | 是 | 否 | 光标左移。 |
| CURSOR_RIGHT<sup>9+</sup> | number | 是 | 否 | 光标右移。 |
| WINDOW_TYPE_INPUT_METHOD_FLOAT<sup>9+</sup> | number | 是 | 否 | 输入法应用窗口风格标识。 |
Z
zhouyongfei 已提交
53

54
## inputMethodEngine.getInputMethodEngine<a name="getInputMethodEngine"></a><sup>deprecated</sup>
Z
zhouyongfei 已提交
55 56 57

getInputMethodEngine(): InputMethodEngine

Z
refresh  
zhouyongfei 已提交
58
获取服务端实例。
Z
zhouyongfei 已提交
59

60
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
61

62
**返回值:**
Z
zhouyongfei 已提交
63

W
wz 已提交
64 65 66
| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [InputMethodEngine](#InputMethodEngine) | 服务端实例。 |
Z
zhouyongfei 已提交
67

68
**示例:**
Z
zhouyongfei 已提交
69

70
  ```js
Z
zhouyongfei 已提交
71 72 73
  var InputMethodEngine = inputMethodEngine.getInputMethodEngine();
  ```

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
## inputMethodAbility.getInputMethodAbility<a name="getInputMethodAbility"></a>

getInputMethodAbility(): InputMethodAbility

获取服务端实例。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**返回值:**

| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [InputMethodAbility](#InputMethodAbility) | 服务端实例。 |

**示例:**

  ```js
  var InputMethodAbility = inputMethodAbility.getInputMethodAbility();
  ```

## inputMethodEngine.createKeyboardDelegate<a name="createKeyboardDelegate"></a><sup>deprecated</sup>
Z
zhouyongfei 已提交
95 96 97

createKeyboardDelegate(): KeyboardDelegate

Z
refresh  
zhouyongfei 已提交
98
获取客户端监听实例。
Z
zhouyongfei 已提交
99

100
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
101

102
**返回值:**
Z
zhouyongfei 已提交
103

W
wz 已提交
104 105 106
| 类型                                  | 说明             |
| ------------------------------------- | ---------------- |
| [KeyboardDelegate](#KeyboardDelegate) | 客户端监听实例。 |
Z
zhouyongfei 已提交
107

108
**示例:**
Z
zhouyongfei 已提交
109

110
  ```js
Z
zhouyongfei 已提交
111 112 113
  var KeyboardDelegate = inputMethodEngine.createKeyboardDelegate();
  ```

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
## inputMethodAbility.getKeyboardDelegate<a name="getKeyboardDelegate"></a>

getKeyboardDelegate(): KeyboardDelegate

获取客户端监听实例。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**返回值:**

| 类型                                  | 说明             |
| ------------------------------------- | ---------------- |
| [KeyboardDelegate](#KeyboardDelegate) | 客户端监听实例。 |

**示例:**

  ```js
  var KeyboardDelegate = inputMethodAbility.getKeyboardDelegate();
  ```

Z
zhouyongfei 已提交
134 135 136 137 138 139
## InputMethodEngine<a name="InputMethodEngine"></a>

下列API示例中都需使用[getInputMethodEngine](#getInputMethodEngine)回调获取到InputMethodEngine实例,再通过此实例调用对应方法。

### on('inputStart')<a name="inputStart"></a>

Z
zhouyongfei 已提交
140
on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void
Z
zhouyongfei 已提交
141

142
订阅输入法绑定成功事件,使用callback回调返回输入法操作相关实例。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
143

144
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
145

146
**参数:**
Z
zhouyongfei 已提交
147 148 149 150

| 参数名   | 类型                            | 必填 | 说明                                                         |
| -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                        | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
Z
refresh  
zhouyongfei 已提交
151
| callback | [KeyboardController](#KeyboardController), [TextInputClient](#TextInputClient) | 是 | 回调返回输入法操作相关实例。 |
Z
zhouyongfei 已提交
152

153
**示例:**
Z
zhouyongfei 已提交
154

155
  ```js
Z
zhouyongfei 已提交
156 157 158 159 160 161 162 163
  InputMethodEngine.on('inputStart', (kbController, textInputClient) => {
      KeyboardController = kbController;
      TextInputClient = textInputClient;
  });
  ```

### off('inputStart')

Z
zhouyongfei 已提交
164
off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void
Z
zhouyongfei 已提交
165

166
取消订阅输入法绑定成功事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
167

168
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
169

170
**参数:**
Z
zhouyongfei 已提交
171

W
wz 已提交
172 173 174 175
| 参数名   | 类型                 | 必填 | 说明                     |
| -------- | -------------------- | ---- | ------------------------ |
| type | string                                                       | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
| callback | [KeyboardController](#KeyboardController), [TextInputClient](#TextInputClient) | 否 | 回调返回输入法操作相关实例。 |
Z
zhouyongfei 已提交
176 177 178



179
**示例:**
Z
zhouyongfei 已提交
180

181
  ```js
182
  InputMethodEngine.off('inputStart', (kbController, textInputClient) => {
Z
zhaolinglan 已提交
183
      console.log('delete inputStart notification.');
184
  });
Z
zhouyongfei 已提交
185 186
  ```

Z
zhaolinglan 已提交
187 188 189 190
### on('inputStop')<sup>9+</sup>

on(type: 'inputStop', callback: () => void): void

Z
zhaolinglan 已提交
191
订阅停止输入法应用事件,使用callback回调。
Z
zhaolinglan 已提交
192 193 194 195 196 197 198

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
Z
zhaolinglan 已提交
199
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
Z
zhaolinglan 已提交
200 201 202 203 204 205
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().on('inputStop', () => {
Z
zhaolinglan 已提交
206
    console.log('inputMethodEngine inputStop');
Z
zhaolinglan 已提交
207 208 209 210 211 212 213
});
  ```

### off('inputStop')<sup>9+</sup>

off(type: 'inputStop', callback: () => void): void

Z
zhaolinglan 已提交
214
取消订阅停止输入法应用事件。使用callback回调。
Z
zhaolinglan 已提交
215 216 217 218 219

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

Z
zhaolinglan 已提交
220 221 222 223
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |
Z
zhaolinglan 已提交
224 225 226 227 228

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().off('inputStop', () => {
Z
zhaolinglan 已提交
229
    console.log('inputMethodEngine delete inputStop notification.');
Z
zhaolinglan 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242
});
  ```

### on('setCallingWindow')<sup>9+</sup>

on(type: 'setCallingWindow', callback: (wid:number) => void): void

订阅设置调用窗口事件,使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

Z
zhaolinglan 已提交
243 244 245 246
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                            |
Z
zhaolinglan 已提交
247 248 249 250 251

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().on('setCallingWindow', (wid) => {
Z
zhaolinglan 已提交
252
    console.log('inputMethodEngine setCallingWindow');
Z
zhaolinglan 已提交
253 254 255 256 257 258 259
});
  ```

### off('setCallingWindow')<sup>9+</sup>

off(type: 'setCallingWindow', callback: (wid:number) => void): void

Z
zhaolinglan 已提交
260
取消订阅设置调用窗口事件。使用callback回调。
Z
zhaolinglan 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273 274

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                 |

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().off('setCallingWindow', () => {
Z
zhaolinglan 已提交
275
    console.log('inputMethodEngine delete setCallingWindow notification.');
Z
zhaolinglan 已提交
276 277 278
});
  ```

Z
zhouyongfei 已提交
279 280
### on('keyboardShow'|'keyboardHide')

Z
zhouyongfei 已提交
281
on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void
Z
zhouyongfei 已提交
282

283
订阅输入法事件。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
284

285
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
286

287
**参数:**
Z
zhouyongfei 已提交
288

W
wz 已提交
289 290 291 292
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |
Z
zhouyongfei 已提交
293

294
**示例:**
Z
zhouyongfei 已提交
295

296
  ```js
297
  InputMethodEngine.on('keyboardShow', () => {
Z
zhaolinglan 已提交
298
      console.log('inputMethodEngine keyboardShow.');
299 300
  });
  InputMethodEngine.on('keyboardHide', () => {
Z
zhaolinglan 已提交
301
      console.log('inputMethodEngine keyboardHide.');
Z
zhouyongfei 已提交
302 303 304 305 306
  });
  ```

### off('keyboardShow'|'keyboardHide')

Z
zhouyongfei 已提交
307
off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void
Z
zhouyongfei 已提交
308

309
取消订阅输入法事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
310

311
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
312

313
**参数:**
Z
zhouyongfei 已提交
314

W
wz 已提交
315 316 317 318
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |
Z
zhouyongfei 已提交
319

320
**示例:**
Z
zhouyongfei 已提交
321

322
  ```js
323
  InputMethodEngine.off('keyboardShow', () => {
Z
zhaolinglan 已提交
324
      console.log('inputMethodEngine delete keyboardShow notification.');
325 326
  });
  InputMethodEngine.off('keyboardHide', () => {
Z
zhaolinglan 已提交
327
      console.log('inputMethodEngine delete keyboardHide notification.');
328
  });
Z
zhouyongfei 已提交
329
  ```
W
wz 已提交
330

331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
## InputMethodAbility<a name="InputMethodAbility"></a>

下列API示例中都需使用[getInputMethodEngine](#getInputMethodEngine)回调获取到InputMethodEngine实例,再通过此实例调用对应方法。

### on('inputStart')<a name="inputStart"></a><sup>9+</sup>

on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void

订阅输入法绑定成功事件,使用callback回调返回输入法操作相关实例。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型                            | 必填 | 说明                                                         |
| -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| type     | string                        | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
| callback | [KeyboardController](#KeyboardController), [InputClient](#InputClient) | 是 | 回调返回输入法操作相关实例。 |

**示例:**

  ```js
  InputMethodAbility.on('inputStart', (kbController, inputClient) => {
      KeyboardController = kbController;
      InputClient = inputClient;
  });
  ```

### off('inputStart')<sup>9+</sup>

off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void

取消订阅输入法绑定成功事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型                 | 必填 | 说明                     |
| -------- | -------------------- | ---- | ------------------------ |
| type | string                                                       | 是   | 设置监听类型。<br/>-type为‘inputStart’时表示订阅输入法绑定。 |
| callback | [KeyboardController](#KeyboardController), [InputClient](#InputClient) | 否 | 回调返回输入法操作相关实例。 |

**示例:**

  ```js
  InputMethodAbility.off('inputStart', (kbController, inputClient) => {
      console.log('delete inputStart notification.');
  });
  ```

### on('inputStop')<sup>9+</sup>

on(type: 'inputStop', callback: () => void): void

订阅停止输入法应用事件,使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
InputMethodAbility.getInputMethodAbility().on('inputStop', () => {
    console.log('inputMethodAbility inputStop');
});
  ```

### off('inputStop')<sup>9+</sup>

off(type: 'inputStop', callback: () => void): void

取消订阅停止输入法应用事件。使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
InputMethodAbility.getInputMethodAbility().off('inputStop', () => {
    console.log('inputMethodAbility delete inputStop notification.');
});
  ```

### on('setCallingWindow')<sup>9+</sup>

on(type: 'setCallingWindow', callback: (wid:number) => void): void

订阅设置调用窗口事件,使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                            |

**示例:**

  ```js
InputMethodAbility.getInputMethodAbility().on('setCallingWindow', (wid) => {
    console.log('inputMethodAbility setCallingWindow');
});
  ```

### off('setCallingWindow')<sup>9+</sup>

off(type: 'setCallingWindow', callback: (wid:number) => void): void

取消订阅设置调用窗口事件。使用callback回调。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                 |

**示例:**

  ```js
InputMethodAbility.getInputMethodAbility().off('setCallingWindow', () => {
    console.log('inputMethodAbility delete setCallingWindow notification.');
});
  ```

### on('keyboardShow'|'keyboardHide')<sup>9+</sup>

on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void

订阅输入法事件。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |

**示例:**

  ```js
  InputMethodAbility.on('keyboardShow', () => {
      console.log('InputMethodAbility keyboardShow.');
  });
  InputMethodAbility.on('keyboardHide', () => {
      console.log('InputMethodAbility keyboardHide.');
  });
  ```

### off('keyboardShow'|'keyboardHide')<sup>9+</sup>

off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void

取消订阅输入法事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'keyboardShow',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | void   | 否   | 回调函数。                                                   |

**示例:**

  ```js
  InputMethodAbility.off('keyboardShow', () => {
      console.log('InputMethodAbility delete keyboardShow notification.');
  });
  InputMethodAbility.off('keyboardHide', () => {
      console.log('InputMethodAbility delete keyboardHide notification.');
  });
  ```

### on('setSubtype')<sup>9+</sup>

on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void

订阅设置输入法子类型事件。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'setSubtype',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | InputMethodSubtype   | 是   | 调用方的输入法子类型。                                                   |

**示例:**

  ```js
  InputMethodAbility.on('setSubtype', (inputMethodSubtype) => {
      console.log('InputMethodAbility setSubtype.');
  });
  ```

### off('setSubtype')<sup>9+</sup>

off(type: 'setSubtype', callback?: () => void): void

取消订阅输入法子类型事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-&nbsp;type为'setSubtype',表示订阅输入法显示。<br/>-&nbsp;type为'keyboardHide',表示订阅输入法隐藏。 |
| callback | InputMethodSubtype   | 是   | 调用方的输入法子类型。                                                   |

**示例:**

  ```js
  InputMethodAbility.off('setSubtype', () => {
      console.log('InputMethodAbility delete setSubtype notification.');
  });
  ```
Z
zhouyongfei 已提交
571 572 573

## KeyboardDelegate<a name="KeyboardDelegate"></a>

Z
refresh  
zhouyongfei 已提交
574
下列API示例中都需使用[createKeyboardDelegate](#createKeyboardDelegate)回调获取到KeyboardDelegate实例,再通过此实例调用对应方法。
Z
zhouyongfei 已提交
575 576 577

### on('keyDown'|'keyUp')

Z
zhouyongfei 已提交
578
on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void
Z
zhouyongfei 已提交
579

580
订阅硬键盘事件,使用callback回调返回按键信息。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
581

582
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
583

584
**参数:**
Z
zhouyongfei 已提交
585

W
wz 已提交
586 587 588 589
| 参数名   | 类型                            | 必填 | 说明                                                         |
| -------- | ------------------------------- | ---- | ------------------------------------------------------------ |
| type   | string         | 是   | 设置监听类型。<br/>-&nbsp;type为'keyDown',表示订阅硬键盘按下。<br/>-&nbsp;type为'keyUp',表示订阅硬键盘抬起。 |
| callback | [KeyEvent](#KeyEvent) | 是 | 回调返回按键信息。 |
Z
zhouyongfei 已提交
590 591 592



593
**示例:**
Z
zhouyongfei 已提交
594

595
  ```js
596
  KeyboardDelegate.on('keyUp', (keyEvent) => {
Z
zhaolinglan 已提交
597 598
      console.info('inputMethodEngine keyCode.(keyUp):' + JSON.stringify(keyEvent.keyCode));
      console.info('inputMethodEngine keyAction.(keyUp):' + JSON.stringify(keyEvent.keyAction));
599 600 601
      return true;
  });
  KeyboardDelegate.on('keyDown', (keyEvent) => {
Z
zhaolinglan 已提交
602 603
      console.info('inputMethodEngine keyCode.(keyDown):' + JSON.stringify(keyEvent.keyCode));
      console.info('inputMethodEngine keyAction.(keyDown):' + JSON.stringify(keyEvent.keyAction));
604
      return true;
Z
zhouyongfei 已提交
605 606 607 608 609
  });
  ```

### off('keyDown'|'keyUp')

Z
zhouyongfei 已提交
610
off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void
Z
zhouyongfei 已提交
611

612
取消订阅硬键盘事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
613

614
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
615

616
**参数:**
Z
zhouyongfei 已提交
617

W
wz 已提交
618 619 620 621
| 参数名   | 类型                  | 必填 | 说明                                                         |
| -------- | --------------------- | ---- | ------------------------------------------------------------ |
| type     | string                | 是   | 设置监听类型。<br/>-&nbsp;type为'keyDown',表示订阅硬键盘按下。<br/>-&nbsp;type为'keyUp',表示订阅硬键盘抬起。 |
| callback | [KeyEvent](#KeyEvent) | 否   | 回调返回按键信息。                                           |
Z
zhouyongfei 已提交
622

623
**示例:**
Z
zhouyongfei 已提交
624

625
  ```js
626
  KeyboardDelegate.off('keyUp', (keyEvent) => {
Z
zhaolinglan 已提交
627
      console.log('delete keyUp notification.');
628 629 630
      return true;
  });
  KeyboardDelegate.off('keyDown', (keyEvent) => {
Z
zhaolinglan 已提交
631
      console.log('delete keyDown notification.');
632 633
      return true;
  });
Z
zhouyongfei 已提交
634 635 636 637
  ```

### on('cursorContextChange')

Z
zhouyongfei 已提交
638
on(type: 'cursorContextChange', callback: (x: number, y:number, height:number) => void): void
Z
zhouyongfei 已提交
639

640
订阅光标变化事件,使用callback回调返回光标信息。使用callback回调返回光标信息。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
641

642
  **系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
643

644
  **参数:**
Z
zhouyongfei 已提交
645

W
wz 已提交
646 647 648 649
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 光标变化事件。<br/>-type为’cursorContextChange‘时,表示光标变化。 |
| callback | number | 是   | 回调返回光标信息。                                           |
Z
zhouyongfei 已提交
650 651 652



653
  **示例:**
W
wz 已提交
654 655 656

```js
KeyboardDelegate.on('cursorContextChange', (x, y, height) => {
Z
zhaolinglan 已提交
657 658 659
    console.log('inputMethodEngine cursorContextChange x:' + x);
    console.log('inputMethodEngine cursorContextChange y:' + y);
    console.log('inputMethodEngine cursorContextChange height:' + height);
W
wz 已提交
660 661
});
```
Z
zhouyongfei 已提交
662 663 664

### off('cursorContextChange')

Z
zhouyongfei 已提交
665
off(type: 'cursorContextChange', callback?: (x: number, y:number, height:number) => void): void
Z
zhouyongfei 已提交
666

667
取消订阅光标变化事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
668

669
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
670

671
  **参数:**
Z
zhouyongfei 已提交
672

W
wz 已提交
673 674 675 676
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 光标变化事件。<br/>-type为’cursorContextChange‘时,表示光标变化。 |
| callback | number | 否   | 回调返回光标信息。                                           |
Z
zhouyongfei 已提交
677 678


679
  **示例:**
Z
zhouyongfei 已提交
680

W
wz 已提交
681
```js
682
KeyboardDelegate.off('cursorContextChange', (x, y, height) => {
Z
zhaolinglan 已提交
683
    console.log('delete cursorContextChange notification.');
684
});
W
wz 已提交
685
```
Z
zhouyongfei 已提交
686 687
### on('selectionChange')

Z
zhouyongfei 已提交
688
on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void
Z
zhouyongfei 已提交
689

690
订阅文本选择变化事件,使用callback回调返回文本选择信息。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
691

692
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
693

694
  **参数:**
Z
zhouyongfei 已提交
695

W
wz 已提交
696 697 698 699
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本选择变化事件。<br/>-type为’selectionChange‘时,表示选择文本变化。 |
| callback | number | 是   | 回调返回文本选择信息。                                       |
Z
zhouyongfei 已提交
700

701
  **示例:**
W
wz 已提交
702 703 704

```js
KeyboardDelegate.on('selectionChange', (oldBegin, oldEnd, newBegin, newEnd) => {
Z
zhaolinglan 已提交
705 706 707 708
    console.log('inputMethodEngine beforeEach selectionChange oldBegin:' + oldBegin);
    console.log('inputMethodEngine beforeEach selectionChange oldEnd:' + oldEnd);
    console.log('inputMethodEngine beforeEach selectionChange newBegin:' + newBegin);
    console.log('inputMethodEngine beforeEach selectionChange newEnd:' + newEnd);
W
wz 已提交
709 710
});
```
Z
zhouyongfei 已提交
711 712 713

### off('selectionChange')

Z
zhouyongfei 已提交
714
off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void
Z
zhouyongfei 已提交
715

716
取消订阅文本选择变化事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
717

718
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
719

720
  **参数:**
Z
zhouyongfei 已提交
721

W
wz 已提交
722 723 724 725
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本选择变化事件。<br/>-type为’selectionChange‘时,表示选择文本变化。 |
| callback | number | 否   | 回调返回文本选择信息。                                       |
Z
zhouyongfei 已提交
726

727
  **示例:**
Z
zhouyongfei 已提交
728

W
wz 已提交
729
```js
730
KeyboardDelegate.off('selectionChange', (oldBegin, oldEnd, newBegin, newEnd) => {
Z
zhaolinglan 已提交
731
  console.log('delete selectionChange notification.');
732
});
W
wz 已提交
733
```
Z
zhouyongfei 已提交
734 735 736 737


### on('textChange')

Z
zhouyongfei 已提交
738
on(type: 'textChange', callback: (text: string) => void): void
Z
zhouyongfei 已提交
739

740
订阅文本变化事件,使用callback回调返回当前文本内容。参数个数为2,参数1为napi_string,参数2为napi_function,否则抛出异常。
Z
zhouyongfei 已提交
741

742
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
743

744
  **参数:**
Z
zhouyongfei 已提交
745

W
wz 已提交
746 747 748 749
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本变化事件。<br/>-type为’textChange‘时,表示当前文本变化。 |
| callback | string | 是   | 回调返回当前文本内容。                                       |
Z
zhouyongfei 已提交
750

751
  **示例:**
Z
zhouyongfei 已提交
752

W
wz 已提交
753 754
```js
KeyboardDelegate.on('textChange', (text) => {
Z
zhaolinglan 已提交
755
    console.log('inputMethodEngine textChange. text:' + text);
W
wz 已提交
756 757
});
```
Z
zhouyongfei 已提交
758 759 760

### off('textChange')

Z
zhouyongfei 已提交
761
off(type: 'textChange', callback?: (text: string) => void): void
Z
zhouyongfei 已提交
762

763
取消订阅文本变化事件。参数个数不为1或2抛出异常。若为1,参数不为napi_string抛出异常;若为2,参数1不为napi_string,参数2不为napi_function抛出异常。参数若为1,取消此类型所有监听;参数若为2,取消此类型当前监听。
Z
zhouyongfei 已提交
764

765
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
766

767
  **参数:**
Z
zhouyongfei 已提交
768

W
wz 已提交
769 770 771 772
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 文本变化事件。<br/>-type为’textChange‘时,表示当前文本变化。 |
| callback | string | 否   | 回调返回当前文本内容。                                       |
Z
zhouyongfei 已提交
773

774
  **示例:**
Z
zhouyongfei 已提交
775

W
wz 已提交
776
```js
777
keyboardDelegate.off('textChange', (text) => {
Z
zhaolinglan 已提交
778
    console.log('delete textChange notification. text:' + text);
779
});
W
wz 已提交
780
```
Z
zhouyongfei 已提交
781 782 783 784 785 786 787 788 789

## KeyboardController<a name="KeyboardController"></a>

下列API示例中都需使用[inputStart](#inputStart)回调获取到KeyboardController实例,再通过此实例调用对应方法。

### hideKeyboard

hideKeyboard(callback: AsyncCallback&lt;void&gt;): void

790
隐藏输入法。使用callback形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
791

792
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
793

794
**参数:**
Z
refresh  
zhouyongfei 已提交
795

W
wz 已提交
796 797 798
| 参数名   | 类型                   | 必填 | 说明     |
| -------- | ---------------------- | ---- | -------- |
| callback | AsyncCallback&lt;void> | 否   | 回调函数 |
Z
refresh  
zhouyongfei 已提交
799

800
**示例:**
Z
zhouyongfei 已提交
801 802


803
```js
804
KeyboardController.hideKeyboard((err) => {
Z
zhaolinglan 已提交
805 806
    if (err === undefined) {
        console.error('hideKeyboard callback result---err: ' + err.msg);
807 808
        return;
    }
Z
zhaolinglan 已提交
809
    console.log('hideKeyboard callback.');
810
});
Z
zhouyongfei 已提交
811 812 813 814 815 816
```

### hideKeyboard

hideKeyboard(): Promise&lt;void&gt;

817
隐藏输入法。使用peomise形式返回结果。参数个数为0,否则抛出异常。
Z
zhouyongfei 已提交
818

819
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
820

821
**返回值:**
Z
refresh  
zhouyongfei 已提交
822

823 824 825
| 类型             | 说明                      |
| ---------------- | ------------------------- |
| Promise&lt;void> | 无返回结果的Promise对象。 |
Z
refresh  
zhouyongfei 已提交
826

827
**示例:**
Z
zhouyongfei 已提交
828

829
```js
830 831
async function InputMethodEngine() {
    await KeyboardController.hideKeyboard().then(() => {
Z
zhaolinglan 已提交
832
        console.info('hideKeyboard promise.');
833
    }).catch((err) => {
Z
zhaolinglan 已提交
834
        console.info('hideKeyboard promise err: ' + err.msg);
835 836
    });
}
Z
zhouyongfei 已提交
837 838 839 840 841 842
```

## TextInputClient<a name="TextInputClient"></a>

下列API示例中都需使用[inputStart](#inputStart)回调获取到TextInputClient实例,再通过此实例调用对应方法。

843
### getForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
844 845 846

getForward(length:number, callback: AsyncCallback&lt;string&gt;): void

847
获取光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
848

849 850 851 852 853
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getForward](#InputClient.getForward)替代
>
> 从 API version 8开始支持。

854
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
855

856
**参数:**
Z
zhouyongfei 已提交
857

W
wz 已提交
858 859 860 861
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |
Z
zhouyongfei 已提交
862

863 864
**示例:**

865
  ```js
866 867
  var length = 1;
  TextInputClient.getForward(length, (err, text) => {
Z
zhaolinglan 已提交
868 869
      if (err === undefined) {
          console.error('getForward callback result---err: ' + err.msg);
870 871
          return;
      }
Z
zhaolinglan 已提交
872
      console.log('getForward callback result---text: ' + text);
873
  });
Z
zhouyongfei 已提交
874 875
  ```

876
### getForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
877 878 879

getForward(length:number): Promise&lt;string&gt;

880
获取光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
881

882 883 884 885 886
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getForward](#InputClient.getForward)替代
>
> 从 API version 8开始支持。

887
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
888

889
**参数:**
Z
zhouyongfei 已提交
890

W
wz 已提交
891 892 893
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
894

895 896
**返回值:**

W
wz 已提交
897 898 899
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |
Z
refresh  
zhouyongfei 已提交
900

901 902
**示例:**

903
  ```js
904 905 906
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getForward(length).then((text) => {
Z
zhaolinglan 已提交
907
          console.info('getForward promise result---res: ' + text);
908
      }).catch((err) => {
Z
zhaolinglan 已提交
909
          console.error('getForward promise err: ' + err.msg);
910 911
      });
  }
Z
zhouyongfei 已提交
912 913
  ```

914
### getBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
915 916 917

getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void

918
获取光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
919

920 921 922 923 924
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getBackward](#InputClient.getBackward)替代
>
> 从 API version 8开始支持。

925
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
926

927
**参数:**
Z
zhouyongfei 已提交
928

W
wz 已提交
929 930 931 932
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |
Z
zhouyongfei 已提交
933

934 935
**示例:**

936
  ```js
937
  var length = 1;
938
  TextInputClient.getBackward(length, (err, text) => {
Z
zhaolinglan 已提交
939 940
      if (err === undefined) {
          console.error('getBackward callback result---err: ' + err.msg);
941 942
          return;
      }
Z
zhaolinglan 已提交
943
      console.log('getBackward callback result---text: ' + text);
Z
zhouyongfei 已提交
944 945 946
  });
  ```

947
### getBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
948 949 950

getBackward(length:number): Promise&lt;string&gt;

951
获取光标后固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
952

953 954 955 956 957
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getBackward](#InputClient.getBackward)替代
>
> 从 API version 8开始支持。

958
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
959

960
**参数:**
Z
zhouyongfei 已提交
961

W
wz 已提交
962 963 964
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
965

966 967
**返回值:**

W
wz 已提交
968 969 970
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |
Z
zhouyongfei 已提交
971

972 973
**示例:**

974
  ```js
975 976 977
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getBackward(length).then((text) => {
Z
zhaolinglan 已提交
978
          console.info('getBackward promise result---res: ' + text);
979
      }).catch((err) => {
Z
zhaolinglan 已提交
980
          console.error('getBackward promise err: ' + err.msg);
981 982
      });
  }
Z
zhouyongfei 已提交
983 984
  ```

985
### deleteForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
986 987 988

deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

989
删除光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
990

991 992 993 994 995
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteForward](#InputClient.deleteForward)替代
>
> 从 API version 8开始支持。

996
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
997

998
**参数:**
Z
zhouyongfei 已提交
999

W
wz 已提交
1000 1001 1002 1003
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1004

1005 1006
**示例:**

1007
  ```js
1008
  var length = 1;
1009
  TextInputClient.deleteForward(length, (err, result) => {
Z
zhaolinglan 已提交
1010
      if (err === undefined) {
1011 1012 1013 1014
          console.error('deleteForward callback result---err: ' + err.msg);
          return;
      }
      if (result) {
Z
zhaolinglan 已提交
1015
          console.info('Success to deleteForward.(callback) ');
1016
      } else {
Z
zhaolinglan 已提交
1017
          console.error('Failed to deleteForward.(callback) ');
1018
      }
Z
zhouyongfei 已提交
1019 1020
  });
  ```
1021
### deleteForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
1022 1023 1024

deleteForward(length:number): Promise&lt;boolean&gt;

1025
删除光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1026

1027 1028 1029 1030 1031
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteForward](#InputClient.deleteForward)替代
>
> 从 API version 8开始支持。

1032
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1033

1034
**参数:**
W
wz 已提交
1035 1036 1037 1038 1039

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| length | number | 是   | 文本长度。 |

1040 1041
**返回值:**  

W
wz 已提交
1042 1043 1044
| 类型                   | 说明           |
| ---------------------- | -------------- |
| Promise&lt;boolean&gt; | 操作成功与否。 |
Z
zhouyongfei 已提交
1045

1046 1047
**示例:**

W
wz 已提交
1048
```js
1049 1050 1051 1052
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteForward(length).then((result) => {
        if (result) {
Z
zhaolinglan 已提交
1053
            console.info('Success to deleteForward.(promise) ');
1054
        } else {
Z
zhaolinglan 已提交
1055
            console.error('Failed to deleteForward.(promise) ');
1056 1057
        }
    }).catch((err) => {
Z
zhaolinglan 已提交
1058
        console.error('deleteForward promise err: ' + err.msg);
1059 1060
    });
}
W
wz 已提交
1061 1062
```

1063
### deleteBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
1064 1065 1066

deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

1067
删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1068

1069 1070 1071 1072 1073
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteBackward](#InputClient.deleteBackward)替代
>
> 从 API version 8开始支持。

1074
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1075

1076
  **参数:**
Z
zhouyongfei 已提交
1077

W
wz 已提交
1078 1079 1080 1081
| 参数名   | 类型                         | 必填 | 说明           |
| -------- | ---------------------------- | ---- | -------------- |
| length   | number                       | 是   | 文本长度。     |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 操作成功与否。 |
Z
zhouyongfei 已提交
1082

1083 1084
  **示例:**

W
wz 已提交
1085
```js
1086
var length = 1;
1087
TextInputClient.deleteBackward(length, (err, result) => {
Z
zhaolinglan 已提交
1088 1089
    if (err === undefined) {
        console.error('deleteBackward callback result---err: ' + err.msg);
1090 1091 1092
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1093
        console.info('Success to deleteBackward.(callback) ');
1094
    } else {
Z
zhaolinglan 已提交
1095
        console.error('Failed to deleteBackward.(callback) ');
1096
    }
W
wz 已提交
1097 1098
});
```
Z
zhouyongfei 已提交
1099

1100
### deleteBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
1101 1102

deleteBackward(length:number): Promise&lt;boolean&gt;
Z
refresh  
zhouyongfei 已提交
1103

1104
删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1105

1106 1107 1108 1109 1110
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteBackward](#InputClient.deleteBackward)替代
>
> 从 API version 8开始支持。

1111
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1112

1113
**参数:**
B
bmeangel 已提交
1114

W
wz 已提交
1115 1116 1117
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
1118

1119 1120
**返回值:** 

W
wz 已提交
1121 1122 1123
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1124

1125
**示例:**
Z
zhouyongfei 已提交
1126

W
wz 已提交
1127
```js
1128 1129 1130 1131
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteBackward(length).then((result) => {
        if (result) {
Z
zhaolinglan 已提交
1132
            console.info('Success to deleteBackward.(promise) ');
1133
        } else {
Z
zhaolinglan 已提交
1134
            console.error('Failed to deleteBackward.(promise) ');
1135 1136
        }
    }).catch((err) => {
Z
zhaolinglan 已提交
1137
        console.error('deleteBackward promise err: ' + err.msg);
1138 1139
    });
}
W
wz 已提交
1140
```
1141
### sendKeyFunction<sup>deprecated</sup>
Z
zhouyongfei 已提交
1142 1143 1144

sendKeyFunction(action:number, callback: AsyncCallback&lt;boolean&gt;): void

1145
发送功能键。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1146

1147 1148 1149 1150 1151
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.sendKeyFunction](#InputClient.sendKeyFunction)替代
>
> 从 API version 8开始支持。

1152
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1153

1154
  **参数:**
Z
zhouyongfei 已提交
1155

W
wz 已提交
1156 1157 1158 1159
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1160

1161 1162
  **示例:**

W
wz 已提交
1163
```js
1164
TextInputClient.sendKeyFunction(keyFunction, (err, result) => {
Z
zhaolinglan 已提交
1165 1166
    if (err === undefined) {
        console.error('sendKeyFunction callback result---err: ' + err.msg);
1167 1168 1169
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1170
        console.info('Success to sendKeyFunction.(callback) ');
1171
    } else {
Z
zhaolinglan 已提交
1172
        console.error('Failed to sendKeyFunction.(callback) ');
1173
    }
W
wz 已提交
1174 1175
});
```
Z
zhouyongfei 已提交
1176

1177
### sendKeyFunction<sup>deprecated</sup>
Z
zhouyongfei 已提交
1178 1179 1180

sendKeyFunction(action:number): Promise&lt;boolean&gt;

1181
发送功能键。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1182

1183 1184 1185 1186 1187
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.sendKeyFunction](#InputClient.sendKeyFunction)替代
>
> 从 API version 8开始支持。

1188
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1189

1190 1191
**参数:**

W
wz 已提交
1192 1193 1194
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
Z
zhouyongfei 已提交
1195

1196 1197
**返回值:**

W
wz 已提交
1198 1199 1200
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1201

1202
**示例:**
Z
zhouyongfei 已提交
1203

1204
  ```js
1205 1206 1207
  async function InputMethodEngine() {
      await client.sendKeyFunction(keyFunction).then((result) => {
          if (result) {
Z
zhaolinglan 已提交
1208
              console.info('Success to sendKeyFunction.(promise) ');
1209
          } else {
Z
zhaolinglan 已提交
1210
              console.error('Failed to sendKeyFunction.(promise) ');
1211 1212
          }
      }).catch((err) => {
Z
zhaolinglan 已提交
1213
          console.error('sendKeyFunction promise err:' + err.msg);
1214 1215
      });
  }
Z
zhouyongfei 已提交
1216
  ```
W
wz 已提交
1217

1218
### insertText<sup>deprecated</sup>
Z
zhouyongfei 已提交
1219 1220 1221

insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void

1222
插入文本。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhouyongfei 已提交
1223

1224 1225 1226 1227 1228
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.insertText](#InputClient.insertText)替代
>
> 从 API version 8开始支持。

1229
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1230

1231
**参数:**
Z
zhouyongfei 已提交
1232

W
wz 已提交
1233 1234 1235 1236
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1237

1238 1239
**示例:**

W
wz 已提交
1240
```js
1241
TextInputClient.insertText('test', (err, result) => {
Z
zhaolinglan 已提交
1242 1243
    if (err === undefined) {
        console.error('insertText callback result---err: ' + err.msg);
1244 1245 1246
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1247
        console.info('Success to insertText.(callback) ');
1248
    } else {
Z
zhaolinglan 已提交
1249
        console.error('Failed to insertText.(callback) ');
1250
    }
W
wz 已提交
1251 1252
});
```
Z
zhouyongfei 已提交
1253

1254
### insertText<sup>deprecated</sup>
Z
zhouyongfei 已提交
1255 1256

insertText(text:string): Promise&lt;boolean&gt;
Z
refresh  
zhouyongfei 已提交
1257

1258
插入文本。使用promise形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1259

1260 1261 1262 1263 1264
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.insertText](#InputClient.insertText)替代
>
> 从 API version 8开始支持。

1265
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1266

1267 1268
**参数:**

W
wz 已提交
1269 1270 1271
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
Z
zhouyongfei 已提交
1272

1273
**返回值:**  
W
wz 已提交
1274 1275 1276 1277

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1278

1279
**示例:**
Z
zhouyongfei 已提交
1280

1281
  ```js
1282 1283 1284
  async function InputMethodEngine() {
      await TextInputClient.insertText('test').then((result) => {
          if (result) {
Z
zhaolinglan 已提交
1285
              console.info('Success to insertText.(promise) ');
1286
          } else {
Z
zhaolinglan 已提交
1287
              console.error('Failed to insertText.(promise) ');
1288 1289
          }
      }).catch((err) => {
Z
zhaolinglan 已提交
1290
          console.error('insertText promise err: ' + err.msg);
1291 1292
      });
  }
Z
zhouyongfei 已提交
1293
  ```
W
wz 已提交
1294

1295
### getEditorAttribute<sup>deprecated</sup>
Z
zhouyongfei 已提交
1296 1297 1298

getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void

1299
获取编辑框属性值。使用callback形式返回结果。参数个数为1,否则抛出异常。
Z
zhouyongfei 已提交
1300

1301 1302 1303 1304 1305
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getEditorAttribute](#InputClient.getEditorAttribute)替代
>
> 从 API version 8开始支持。

1306
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1307

1308 1309
**参数:**

W
wz 已提交
1310 1311 1312
| 参数名                         | 类型                          | 必填                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| callback | AsyncCallback&lt;[EditorAttribute](#EditorAttribute)&gt; | 是 |  编辑框属性值。                |
Z
zhouyongfei 已提交
1313

1314 1315
**示例:**

1316
  ```js
1317
  TextInputClient.getEditorAttribute((err, editorAttribute) => {
Z
zhaolinglan 已提交
1318 1319
      if (err === undefined) {
          console.error('getEditorAttribute callback result---err: ' + err.msg);
1320 1321
          return;
      }
Z
zhaolinglan 已提交
1322 1323
      console.log('editorAttribute.inputPattern(callback): ' + JSON.stringify(editorAttribute.inputPattern));
      console.log('editorAttribute.enterKeyType(callback): ' + JSON.stringify(editorAttribute.enterKeyType));
1324
  });
Z
refresh  
zhouyongfei 已提交
1325
  ```
Z
zhouyongfei 已提交
1326

1327
### getEditorAttribute<sup>deprecated</sup>
Z
zhouyongfei 已提交
1328

Z
zhaolinglan 已提交
1329
getEditorAttribute(): Promise&lt;EditorAttribute&gt;
Z
refresh  
zhouyongfei 已提交
1330

1331
获取编辑框属性值。使用promise形式返回结果。参数个数为0,否则抛出异常。
Z
zhouyongfei 已提交
1332

1333 1334 1335 1336 1337
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getEditorAttribute](#InputClient.getEditorAttribute)替代
>
> 从 API version 8开始支持。

1338
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1339

1340 1341
**返回值:**

W
wz 已提交
1342 1343 1344
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;[EditorAttribute](#EditorAttribute)&gt; |  返回编辑框属性值。           |
Z
zhouyongfei 已提交
1345

1346 1347
**示例:**

1348
   ```js
1349 1350
   async function InputMethodEngine() {
       await TextInputClient.getEditorAttribute().then((editorAttribute) => {
Z
zhaolinglan 已提交
1351 1352
           console.info('editorAttribute.inputPattern(promise): ' + JSON.stringify(editorAttribute.inputPattern));
           console.info('editorAttribute.enterKeyType(promise): ' + JSON.stringify(editorAttribute.enterKeyType));
1353
       }).catch((err) => {
Z
zhaolinglan 已提交
1354
           console.error('getEditorAttribute promise err: ' + err.msg);
1355 1356
       });
   }
Z
zhouyongfei 已提交
1357 1358
   ```

1359
## InputClient <a name="InputClient "></a><sup>9+</sup>
Z
zhaolinglan 已提交
1360

1361
下列API示例中都需使用[inputStart](#inputStart)回调获取到InputClient实例,再通过此实例调用对应方法。
Z
zhaolinglan 已提交
1362

1363 1364 1365 1366 1367
### sendKeyFunction<sup>9+</sup>

sendKeyFunction(action:number, callback: AsyncCallback&lt;boolean&gt;): void

发送功能键。使用callback形式返回结果。参数个数为2,否则抛出异常。
Z
zhaolinglan 已提交
1368 1369 1370

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

1371
  **参数:**
Z
zhaolinglan 已提交
1372

1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |

  **示例:**

```js
TextInputClient.sendKeyFunction(keyFunction, (err, result) => {
    if (err === undefined) {
        console.error('sendKeyFunction callback result---err: ' + err.msg);
        return;
    }
    if (result) {
        console.info('Success to sendKeyFunction.(callback) ');
    } else {
        console.error('Failed to sendKeyFunction.(callback) ');
    }
});
```

### sendKeyFunction<sup>9+</sup>

sendKeyFunction(action:number): Promise&lt;boolean&gt;

发送功能键。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |

**示例:**

  ```js
  async function InputMethodEngine() {
      await client.sendKeyFunction(keyFunction).then((result) => {
          if (result) {
              console.info('Success to sendKeyFunction.(promise) ');
          } else {
              console.error('Failed to sendKeyFunction.(promise) ');
          }
      }).catch((err) => {
          console.error('sendKeyFunction promise err:' + err.msg);
      });
  }
  ```

### getForward<sup>9+</sup>

getForward(length:number, callback: AsyncCallback&lt;string&gt;): void

获取光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |

**示例:**

  ```js
  var length = 1;
  TextInputClient.getForward(length, (err, text) => {
      if (err === undefined) {
          console.error('getForward callback result---err: ' + err.msg);
          return;
      }
      console.log('getForward callback result---text: ' + text);
  });
  ```

### getForward<sup>9+</sup>

getForward(length:number): Promise&lt;string&gt;

获取光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |

**示例:**

  ```js
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getForward(length).then((text) => {
          console.info('getForward promise result---res: ' + text);
      }).catch((err) => {
          console.error('getForward promise err: ' + err.msg);
      });
  }
  ```

### getBackward<sup>9+</sup>

getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void

获取光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |

**示例:**

  ```js
  var length = 1;
  TextInputClient.getBackward(length, (err, text) => {
      if (err === undefined) {
          console.error('getBackward callback result---err: ' + err.msg);
          return;
      }
      console.log('getBackward callback result---text: ' + text);
  });
  ```

### getBackward<sup>9+</sup>

getBackward(length:number): Promise&lt;string&gt;

获取光标后固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |

**示例:**

  ```js
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getBackward(length).then((text) => {
          console.info('getBackward promise result---res: ' + text);
      }).catch((err) => {
          console.error('getBackward promise err: ' + err.msg);
      });
  }
  ```

### deleteForward<sup>9+</sup>

deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

删除光标前固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |

**示例:**

  ```js
  var length = 1;
  TextInputClient.deleteForward(length, (err, result) => {
      if (err === undefined) {
          console.error('deleteForward callback result---err: ' + err.msg);
          return;
      }
      if (result) {
          console.info('Success to deleteForward.(callback) ');
      } else {
          console.error('Failed to deleteForward.(callback) ');
      }
  });
  ```
### deleteForward<sup>9+</sup>

deleteForward(length:number): Promise&lt;boolean&gt;

删除光标前固定长度的文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型   | 必填 | 说明       |
| ------ | ------ | ---- | ---------- |
| length | number | 是   | 文本长度。 |

**返回值:**  

| 类型                   | 说明           |
| ---------------------- | -------------- |
| Promise&lt;boolean&gt; | 操作成功与否。 |

**示例:**

```js
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteForward(length).then((result) => {
        if (result) {
            console.info('Success to deleteForward.(promise) ');
        } else {
            console.error('Failed to deleteForward.(promise) ');
        }
    }).catch((err) => {
        console.error('deleteForward promise err: ' + err.msg);
    });
}
```

### deleteBackward<sup>9+</sup>

deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void

删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

  **参数:**

| 参数名   | 类型                         | 必填 | 说明           |
| -------- | ---------------------------- | ---- | -------------- |
| length   | number                       | 是   | 文本长度。     |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 操作成功与否。 |

  **示例:**

```js
var length = 1;
TextInputClient.deleteBackward(length, (err, result) => {
    if (err === undefined) {
        console.error('deleteBackward callback result---err: ' + err.msg);
        return;
    }
    if (result) {
        console.info('Success to deleteBackward.(callback) ');
    } else {
        console.error('Failed to deleteBackward.(callback) ');
    }
});
```

### deleteBackward<sup>9+</sup>

deleteBackward(length:number): Promise&lt;boolean&gt;

删除光标后固定长度的文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |

**返回值:** 

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |

**示例:**

```js
async function InputMethodAbility() {
    var length = 1;
    await InputClient.deleteBackward(length).then((result) => {
        if (result) {
            console.info('Success to deleteBackward.(promise) ');
        } else {
            console.error('Failed to deleteBackward.(promise) ');
        }
    }).catch((err) => {
        console.error('deleteBackward promise err: ' + err.msg);
    });
}
```

### insertText<sup>9+</sup>

insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void

插入文本。使用callback形式返回结果。参数个数为2,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |

**示例:**

```js
TextInputClient.insertText('test', (err, result) => {
    if (err === undefined) {
        console.error('insertText callback result---err: ' + err.msg);
        return;
    }
    if (result) {
        console.info('Success to insertText.(callback) ');
    } else {
        console.error('Failed to insertText.(callback) ');
    }
});
```

### insertText<sup>9+</sup>

insertText(text:string): Promise&lt;boolean&gt;

插入文本。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |

**返回值:**  

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |

**示例:**

  ```js
  async function InputMethodEngine() {
      await TextInputClient.insertText('test').then((result) => {
          if (result) {
              console.info('Success to insertText.(promise) ');
          } else {
              console.error('Failed to insertText.(promise) ');
          }
      }).catch((err) => {
          console.error('insertText promise err: ' + err.msg);
      });
  }
  ```

### getEditorAttribute<sup>9+</sup>

getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void

获取编辑框属性值。使用callback形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名                         | 类型                          | 必填                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
| callback | AsyncCallback&lt;[EditorAttribute](#EditorAttribute)&gt; | 是 |  编辑框属性值。                |

**示例:**

  ```js
  TextInputClient.getEditorAttribute((err, editorAttribute) => {
      if (err === undefined) {
          console.error('getEditorAttribute callback result---err: ' + err.msg);
          return;
      }
      console.log('editorAttribute.inputPattern(callback): ' + JSON.stringify(editorAttribute.inputPattern));
      console.log('editorAttribute.enterKeyType(callback): ' + JSON.stringify(editorAttribute.enterKeyType));
  });
  ```

### getEditorAttribute<sup>9+</sup>

getEditorAttribute(): Promise&lt;EditorAttribute&gt;

获取编辑框属性值。使用promise形式返回结果。参数个数为0,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**返回值:**

| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;[EditorAttribute](#EditorAttribute)&gt; |  返回编辑框属性值。           |

**示例:**

   ```js
   async function InputMethodEngine() {
       await TextInputClient.getEditorAttribute().then((editorAttribute) => {
           console.info('editorAttribute.inputPattern(promise): ' + JSON.stringify(editorAttribute.inputPattern));
           console.info('editorAttribute.enterKeyType(promise): ' + JSON.stringify(editorAttribute.enterKeyType));
       }).catch((err) => {
           console.error('getEditorAttribute promise err: ' + err.msg);
       });
   }
   ```

### moveCursor<sup>9+</sup>

moveCursor(direction: number, callback: AsyncCallback&lt;void&gt;): void

移动光标。使用callback形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名    | 类型                      | 必填 | 说明           |
| --------- | ------------------------- | ---- | -------------- |
Z
zhaolinglan 已提交
1822 1823 1824 1825 1826 1827
| direction | number                    | 是   | 光标移动方向。 |
| callback  | AsyncCallback&lt;void&gt; | 是   | 回调函数。     |

**示例:**

```js
1828
InputClient.moveCursor(inputMethodAbility.CURSOR_xxx, (err) => {
Z
zhaolinglan 已提交
1829 1830
    if (err === undefined) {
        console.error('moveCursor callback result---err: ' + err.msg);
Z
zhaolinglan 已提交
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
        return;
    }
});
```

### moveCursor<sup>9+</sup>

moveCursor(direction: number): Promise&lt;void&gt;

移动光标。使用promise形式返回结果。参数个数为1,否则抛出异常。

**系统能力**: SystemCapability.MiscServices.InputMethodFramework

**参数:**

| 参数名    | 类型   | 必填 | 说明           |
| --------- | ------ | ---- | -------------- |
Z
zhaolinglan 已提交
1848
| direction | number | 是   | 光标移动方向。 |
Z
zhaolinglan 已提交
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858

**返回值:**  

| 类型                | 说明                      |
| ------------------- | ------------------------- |
| Promise&lt;void&gt; | 无返回结果的Promise对象。 |

**示例:**

  ```js
1859 1860
async function InputMethodAbility() {
    await InputClient.moveCursor(inputMethodAbility.CURSOR_xxx).then(async (err) => {
Z
zhaolinglan 已提交
1861 1862
        console.log('moveCursor success');
    }).catch((err) => {
Z
zhaolinglan 已提交
1863
        console.error('moveCursor success err: ' + err.msg);
Z
zhaolinglan 已提交
1864 1865 1866 1867
    });
}
  ```

Z
zhouyongfei 已提交
1868 1869 1870 1871
## EditorAttribute<a name="EditorAttribute"></a>

编辑框属性值。

1872
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
1873 1874 1875 1876 1877

| 名称         | 参数类型 | 可读 | 可写 | 说明               |
| ------------ | -------- | ---- | ---- | ------------------ |
| enterKeyType | number   | 是   | 否   | 编辑框的功能属性。 |
| inputPattern | number   | 是   | 否   | 编辑框的文本属性。 |
Z
zhouyongfei 已提交
1878 1879 1880

## KeyEvent<a name="KeyEvent"></a>

Z
refresh  
zhouyongfei 已提交
1881
按键属性值。
Z
zhouyongfei 已提交
1882

1883
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
1884 1885 1886 1887 1888

| 名称      | 参数类型 | 可读 | 可写 | 说明         |
| --------- | -------- | ---- | ---- | ------------ |
| keyCode   | number   | 是   | 否   | 按键的键值。 |
| keyAction | number   | 是   | 否   | 按键的状态。 |
Z
zhouyongfei 已提交
1889