js-apis-inputmethodengine.md 66.7 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

H
Hollokin 已提交
60 61 62 63 64
> **说明:** 
> 从API version 9开始废弃, 建议使用[getInputMethodAbility](#getInputMethodAbility)替代
>
> 从 API version 8开始支持。

65
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
66

67
**返回值:**
Z
zhouyongfei 已提交
68

W
wz 已提交
69 70 71
| 类型                                    | 说明         |
| --------------------------------------- | ------------ |
| [InputMethodEngine](#InputMethodEngine) | 服务端实例。 |
Z
zhouyongfei 已提交
72

73
**示例:**
Z
zhouyongfei 已提交
74

75
  ```js
Z
zhouyongfei 已提交
76 77 78
  var InputMethodEngine = inputMethodEngine.getInputMethodEngine();
  ```

H
Hollokin 已提交
79
## inputMethodAbility.getInputMethodAbility<a name="getInputMethodAbility"></a><sup>9+</sup>
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

getInputMethodAbility(): InputMethodAbility

获取服务端实例。

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

**返回值:**

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

**示例:**

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

## inputMethodEngine.createKeyboardDelegate<a name="createKeyboardDelegate"></a><sup>deprecated</sup>
Z
zhouyongfei 已提交
100 101 102

createKeyboardDelegate(): KeyboardDelegate

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

H
Hollokin 已提交
105 106 107 108 109
> **说明:** 
> 从API version 9开始废弃, 建议使用[getKeyboardDelegate](#getKeyboardDelegate)替代
>
> 从 API version 8开始支持。

110
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
111

112
**返回值:**
Z
zhouyongfei 已提交
113

W
wz 已提交
114 115 116
| 类型                                  | 说明             |
| ------------------------------------- | ---------------- |
| [KeyboardDelegate](#KeyboardDelegate) | 客户端监听实例。 |
Z
zhouyongfei 已提交
117

118
**示例:**
Z
zhouyongfei 已提交
119

120
  ```js
Z
zhouyongfei 已提交
121 122 123
  var KeyboardDelegate = inputMethodEngine.createKeyboardDelegate();
  ```

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
## inputMethodAbility.getKeyboardDelegate<a name="getKeyboardDelegate"></a>

getKeyboardDelegate(): KeyboardDelegate

获取客户端监听实例。

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

**返回值:**

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

**示例:**

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

Z
zhouyongfei 已提交
144 145 146 147 148 149
## InputMethodEngine<a name="InputMethodEngine"></a>

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

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

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

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

154
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
155

156
**参数:**
Z
zhouyongfei 已提交
157 158 159 160

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

163
**示例:**
Z
zhouyongfei 已提交
164

165
  ```js
Z
zhouyongfei 已提交
166 167 168 169 170 171 172 173
  InputMethodEngine.on('inputStart', (kbController, textInputClient) => {
      KeyboardController = kbController;
      TextInputClient = textInputClient;
  });
  ```

### off('inputStart')

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

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

178
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
179

180
**参数:**
Z
zhouyongfei 已提交
181

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



189
**示例:**
Z
zhouyongfei 已提交
190

191
  ```js
192
  InputMethodEngine.off('inputStart', (kbController, textInputClient) => {
Z
zhaolinglan 已提交
193
      console.log('delete inputStart notification.');
194
  });
Z
zhouyongfei 已提交
195 196
  ```

Z
zhaolinglan 已提交
197 198 199 200
### on('inputStop')<sup>9+</sup>

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

Z
zhaolinglan 已提交
201
订阅停止输入法应用事件,使用callback回调。
Z
zhaolinglan 已提交
202 203 204 205 206 207 208

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

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
Z
zhaolinglan 已提交
209
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
Z
zhaolinglan 已提交
210 211 212 213 214 215
| callback | void   | 是   | 回调函数。                                                   |

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().on('inputStop', () => {
Z
zhaolinglan 已提交
216
    console.log('inputMethodEngine inputStop');
Z
zhaolinglan 已提交
217 218 219 220 221 222 223
});
  ```

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

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

Z
zhaolinglan 已提交
224
取消订阅停止输入法应用事件。使用callback回调。
Z
zhaolinglan 已提交
225 226 227 228 229

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

**参数:**

Z
zhaolinglan 已提交
230 231 232 233
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘inputStop’时表示订阅停止输入法应用事件。 |
| callback | void   | 是   | 回调函数。                                                   |
Z
zhaolinglan 已提交
234 235 236 237 238

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().off('inputStop', () => {
Z
zhaolinglan 已提交
239
    console.log('inputMethodEngine delete inputStop notification.');
Z
zhaolinglan 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252
});
  ```

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

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

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

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

**参数:**

Z
zhaolinglan 已提交
253 254 255 256
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 设置监听类型。<br/>-type为‘setCallingWindow’时表示订阅设置调用窗口事件。 |
| callback | number | 是   | 调用方window id。                                            |
Z
zhaolinglan 已提交
257 258 259 260 261

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().on('setCallingWindow', (wid) => {
Z
zhaolinglan 已提交
262
    console.log('inputMethodEngine setCallingWindow');
Z
zhaolinglan 已提交
263 264 265 266 267 268 269
});
  ```

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

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

Z
zhaolinglan 已提交
270
取消订阅设置调用窗口事件。使用callback回调。
Z
zhaolinglan 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284

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

**参数:**

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

**示例:**

  ```js
InputMethodEngine.getInputMethodEngine().off('setCallingWindow', () => {
Z
zhaolinglan 已提交
285
    console.log('inputMethodEngine delete setCallingWindow notification.');
Z
zhaolinglan 已提交
286 287 288
});
  ```

Z
zhouyongfei 已提交
289 290
### on('keyboardShow'|'keyboardHide')

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

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

295
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
296

297
**参数:**
Z
zhouyongfei 已提交
298

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

304
**示例:**
Z
zhouyongfei 已提交
305

306
  ```js
307
  InputMethodEngine.on('keyboardShow', () => {
Z
zhaolinglan 已提交
308
      console.log('inputMethodEngine keyboardShow.');
309 310
  });
  InputMethodEngine.on('keyboardHide', () => {
Z
zhaolinglan 已提交
311
      console.log('inputMethodEngine keyboardHide.');
Z
zhouyongfei 已提交
312 313 314 315 316
  });
  ```

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

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

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

321
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
322

323
**参数:**
Z
zhouyongfei 已提交
324

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

330
**示例:**
Z
zhouyongfei 已提交
331

332
  ```js
333
  InputMethodEngine.off('keyboardShow', () => {
Z
zhaolinglan 已提交
334
      console.log('inputMethodEngine delete keyboardShow notification.');
335 336
  });
  InputMethodEngine.off('keyboardHide', () => {
Z
zhaolinglan 已提交
337
      console.log('inputMethodEngine delete keyboardHide notification.');
338
  });
Z
zhouyongfei 已提交
339
  ```
W
wz 已提交
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 571 572 573 574 575 576 577 578 579 580
## 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 已提交
581 582 583

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

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

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

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

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

592
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
593

594
**参数:**
Z
zhouyongfei 已提交
595

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



603
**示例:**
Z
zhouyongfei 已提交
604

605
  ```js
606
  KeyboardDelegate.on('keyUp', (keyEvent) => {
Z
zhaolinglan 已提交
607 608
      console.info('inputMethodEngine keyCode.(keyUp):' + JSON.stringify(keyEvent.keyCode));
      console.info('inputMethodEngine keyAction.(keyUp):' + JSON.stringify(keyEvent.keyAction));
609 610 611
      return true;
  });
  KeyboardDelegate.on('keyDown', (keyEvent) => {
Z
zhaolinglan 已提交
612 613
      console.info('inputMethodEngine keyCode.(keyDown):' + JSON.stringify(keyEvent.keyCode));
      console.info('inputMethodEngine keyAction.(keyDown):' + JSON.stringify(keyEvent.keyAction));
614
      return true;
Z
zhouyongfei 已提交
615 616 617 618 619
  });
  ```

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

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

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

624
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
625

626
**参数:**
Z
zhouyongfei 已提交
627

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

633
**示例:**
Z
zhouyongfei 已提交
634

635
  ```js
636
  KeyboardDelegate.off('keyUp', (keyEvent) => {
Z
zhaolinglan 已提交
637
      console.log('delete keyUp notification.');
638 639 640
      return true;
  });
  KeyboardDelegate.off('keyDown', (keyEvent) => {
Z
zhaolinglan 已提交
641
      console.log('delete keyDown notification.');
642 643
      return true;
  });
Z
zhouyongfei 已提交
644 645 646 647
  ```

### on('cursorContextChange')

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

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

652
  **系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
653

654
  **参数:**
Z
zhouyongfei 已提交
655

W
wz 已提交
656 657 658 659
| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| type     | string | 是   | 光标变化事件。<br/>-type为’cursorContextChange‘时,表示光标变化。 |
| callback | number | 是   | 回调返回光标信息。                                           |
Z
zhouyongfei 已提交
660 661 662



663
  **示例:**
W
wz 已提交
664 665 666

```js
KeyboardDelegate.on('cursorContextChange', (x, y, height) => {
Z
zhaolinglan 已提交
667 668 669
    console.log('inputMethodEngine cursorContextChange x:' + x);
    console.log('inputMethodEngine cursorContextChange y:' + y);
    console.log('inputMethodEngine cursorContextChange height:' + height);
W
wz 已提交
670 671
});
```
Z
zhouyongfei 已提交
672 673 674

### off('cursorContextChange')

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

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

679
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
680

681
  **参数:**
Z
zhouyongfei 已提交
682

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


689
  **示例:**
Z
zhouyongfei 已提交
690

W
wz 已提交
691
```js
692
KeyboardDelegate.off('cursorContextChange', (x, y, height) => {
Z
zhaolinglan 已提交
693
    console.log('delete cursorContextChange notification.');
694
});
W
wz 已提交
695
```
Z
zhouyongfei 已提交
696 697
### on('selectionChange')

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

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

702
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
703

704
  **参数:**
Z
zhouyongfei 已提交
705

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

711
  **示例:**
W
wz 已提交
712 713 714

```js
KeyboardDelegate.on('selectionChange', (oldBegin, oldEnd, newBegin, newEnd) => {
Z
zhaolinglan 已提交
715 716 717 718
    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 已提交
719 720
});
```
Z
zhouyongfei 已提交
721 722 723

### off('selectionChange')

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

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

728
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
729

730
  **参数:**
Z
zhouyongfei 已提交
731

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

737
  **示例:**
Z
zhouyongfei 已提交
738

W
wz 已提交
739
```js
740
KeyboardDelegate.off('selectionChange', (oldBegin, oldEnd, newBegin, newEnd) => {
Z
zhaolinglan 已提交
741
  console.log('delete selectionChange notification.');
742
});
W
wz 已提交
743
```
Z
zhouyongfei 已提交
744 745 746 747


### on('textChange')

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

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

752
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
753

754
  **参数:**
Z
zhouyongfei 已提交
755

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

761
  **示例:**
Z
zhouyongfei 已提交
762

W
wz 已提交
763 764
```js
KeyboardDelegate.on('textChange', (text) => {
Z
zhaolinglan 已提交
765
    console.log('inputMethodEngine textChange. text:' + text);
W
wz 已提交
766 767
});
```
Z
zhouyongfei 已提交
768 769 770

### off('textChange')

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

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

775
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
776

777
  **参数:**
Z
zhouyongfei 已提交
778

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

784
  **示例:**
Z
zhouyongfei 已提交
785

W
wz 已提交
786
```js
787
keyboardDelegate.off('textChange', (text) => {
Z
zhaolinglan 已提交
788
    console.log('delete textChange notification. text:' + text);
789
});
W
wz 已提交
790
```
Z
zhouyongfei 已提交
791 792 793 794 795 796 797 798 799

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

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

### hideKeyboard

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

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

802
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
803

804
**参数:**
Z
refresh  
zhouyongfei 已提交
805

W
wz 已提交
806 807 808
| 参数名   | 类型                   | 必填 | 说明     |
| -------- | ---------------------- | ---- | -------- |
| callback | AsyncCallback&lt;void> | 否   | 回调函数 |
Z
refresh  
zhouyongfei 已提交
809

810
**示例:**
Z
zhouyongfei 已提交
811 812


813
```js
814
KeyboardController.hideKeyboard((err) => {
Z
zhaolinglan 已提交
815 816
    if (err === undefined) {
        console.error('hideKeyboard callback result---err: ' + err.msg);
817 818
        return;
    }
Z
zhaolinglan 已提交
819
    console.log('hideKeyboard callback.');
820
});
Z
zhouyongfei 已提交
821 822 823 824 825 826
```

### hideKeyboard

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

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

829
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
830

831
**返回值:**
Z
refresh  
zhouyongfei 已提交
832

833 834 835
| 类型             | 说明                      |
| ---------------- | ------------------------- |
| Promise&lt;void> | 无返回结果的Promise对象。 |
Z
refresh  
zhouyongfei 已提交
836

837
**示例:**
Z
zhouyongfei 已提交
838

839
```js
840 841
async function InputMethodEngine() {
    await KeyboardController.hideKeyboard().then(() => {
Z
zhaolinglan 已提交
842
        console.info('hideKeyboard promise.');
843
    }).catch((err) => {
Z
zhaolinglan 已提交
844
        console.info('hideKeyboard promise err: ' + err.msg);
845 846
    });
}
Z
zhouyongfei 已提交
847 848 849 850 851 852
```

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

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

853
### getForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
854 855 856

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

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

859 860 861 862 863
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getForward](#InputClient.getForward)替代
>
> 从 API version 8开始支持。

864
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
865

866
**参数:**
Z
zhouyongfei 已提交
867

W
wz 已提交
868 869 870 871
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |
Z
zhouyongfei 已提交
872

873 874
**示例:**

875
  ```js
876 877
  var length = 1;
  TextInputClient.getForward(length, (err, text) => {
Z
zhaolinglan 已提交
878 879
      if (err === undefined) {
          console.error('getForward callback result---err: ' + err.msg);
880 881
          return;
      }
Z
zhaolinglan 已提交
882
      console.log('getForward callback result---text: ' + text);
883
  });
Z
zhouyongfei 已提交
884 885
  ```

886
### getForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
887 888 889

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

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

892 893 894 895 896
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getForward](#InputClient.getForward)替代
>
> 从 API version 8开始支持。

897
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
898

899
**参数:**
Z
zhouyongfei 已提交
900

W
wz 已提交
901 902 903
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
904

905 906
**返回值:**

W
wz 已提交
907 908 909
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |
Z
refresh  
zhouyongfei 已提交
910

911 912
**示例:**

913
  ```js
914 915 916
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getForward(length).then((text) => {
Z
zhaolinglan 已提交
917
          console.info('getForward promise result---res: ' + text);
918
      }).catch((err) => {
Z
zhaolinglan 已提交
919
          console.error('getForward promise err: ' + err.msg);
920 921
      });
  }
Z
zhouyongfei 已提交
922 923
  ```

924
### getBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
925 926 927

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

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

930 931 932 933 934
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getBackward](#InputClient.getBackward)替代
>
> 从 API version 8开始支持。

935
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
936

937
**参数:**
Z
zhouyongfei 已提交
938

W
wz 已提交
939 940 941 942
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;string&gt; | 是 | 返回文本。 |
Z
zhouyongfei 已提交
943

944 945
**示例:**

946
  ```js
947
  var length = 1;
948
  TextInputClient.getBackward(length, (err, text) => {
Z
zhaolinglan 已提交
949 950
      if (err === undefined) {
          console.error('getBackward callback result---err: ' + err.msg);
951 952
          return;
      }
Z
zhaolinglan 已提交
953
      console.log('getBackward callback result---text: ' + text);
Z
zhouyongfei 已提交
954 955 956
  });
  ```

957
### getBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
958 959 960

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

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

963 964 965 966 967
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getBackward](#InputClient.getBackward)替代
>
> 从 API version 8开始支持。

968
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
969

970
**参数:**
Z
zhouyongfei 已提交
971

W
wz 已提交
972 973 974
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
975

976 977
**返回值:**

W
wz 已提交
978 979 980
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;string&gt; |  返回文本。                |
Z
zhouyongfei 已提交
981

982 983
**示例:**

984
  ```js
985 986 987
  async function InputMethodEngine() {
      var length = 1;
      await TextInputClient.getBackward(length).then((text) => {
Z
zhaolinglan 已提交
988
          console.info('getBackward promise result---res: ' + text);
989
      }).catch((err) => {
Z
zhaolinglan 已提交
990
          console.error('getBackward promise err: ' + err.msg);
991 992
      });
  }
Z
zhouyongfei 已提交
993 994
  ```

995
### deleteForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
996 997 998

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

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

1001 1002 1003 1004 1005
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteForward](#InputClient.deleteForward)替代
>
> 从 API version 8开始支持。

1006
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1007

1008
**参数:**
Z
zhouyongfei 已提交
1009

W
wz 已提交
1010 1011 1012 1013
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1014

1015 1016
**示例:**

1017
  ```js
1018
  var length = 1;
1019
  TextInputClient.deleteForward(length, (err, result) => {
Z
zhaolinglan 已提交
1020
      if (err === undefined) {
1021 1022 1023 1024
          console.error('deleteForward callback result---err: ' + err.msg);
          return;
      }
      if (result) {
Z
zhaolinglan 已提交
1025
          console.info('Success to deleteForward.(callback) ');
1026
      } else {
Z
zhaolinglan 已提交
1027
          console.error('Failed to deleteForward.(callback) ');
1028
      }
Z
zhouyongfei 已提交
1029 1030
  });
  ```
1031
### deleteForward<sup>deprecated</sup>
Z
zhouyongfei 已提交
1032 1033 1034

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

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

1037 1038 1039 1040 1041
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteForward](#InputClient.deleteForward)替代
>
> 从 API version 8开始支持。

1042
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1043

1044
**参数:**
W
wz 已提交
1045 1046 1047 1048 1049

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

1050 1051
**返回值:**  

W
wz 已提交
1052 1053 1054
| 类型                   | 说明           |
| ---------------------- | -------------- |
| Promise&lt;boolean&gt; | 操作成功与否。 |
Z
zhouyongfei 已提交
1055

1056 1057
**示例:**

W
wz 已提交
1058
```js
1059 1060 1061 1062
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteForward(length).then((result) => {
        if (result) {
Z
zhaolinglan 已提交
1063
            console.info('Success to deleteForward.(promise) ');
1064
        } else {
Z
zhaolinglan 已提交
1065
            console.error('Failed to deleteForward.(promise) ');
1066 1067
        }
    }).catch((err) => {
Z
zhaolinglan 已提交
1068
        console.error('deleteForward promise err: ' + err.msg);
1069 1070
    });
}
W
wz 已提交
1071 1072
```

1073
### deleteBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
1074 1075 1076

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

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

1079 1080 1081 1082 1083
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteBackward](#InputClient.deleteBackward)替代
>
> 从 API version 8开始支持。

1084
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1085

1086
  **参数:**
Z
zhouyongfei 已提交
1087

W
wz 已提交
1088 1089 1090 1091
| 参数名   | 类型                         | 必填 | 说明           |
| -------- | ---------------------------- | ---- | -------------- |
| length   | number                       | 是   | 文本长度。     |
| callback | AsyncCallback&lt;boolean&gt; | 是   | 操作成功与否。 |
Z
zhouyongfei 已提交
1092

1093 1094
  **示例:**

W
wz 已提交
1095
```js
1096
var length = 1;
1097
TextInputClient.deleteBackward(length, (err, result) => {
Z
zhaolinglan 已提交
1098 1099
    if (err === undefined) {
        console.error('deleteBackward callback result---err: ' + err.msg);
1100 1101 1102
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1103
        console.info('Success to deleteBackward.(callback) ');
1104
    } else {
Z
zhaolinglan 已提交
1105
        console.error('Failed to deleteBackward.(callback) ');
1106
    }
W
wz 已提交
1107 1108
});
```
Z
zhouyongfei 已提交
1109

1110
### deleteBackward<sup>deprecated</sup>
Z
zhouyongfei 已提交
1111 1112

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

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

1116 1117 1118 1119 1120
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.deleteBackward](#InputClient.deleteBackward)替代
>
> 从 API version 8开始支持。

1121
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1122

1123
**参数:**
B
bmeangel 已提交
1124

W
wz 已提交
1125 1126 1127
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| length | number | 是 | 文本长度。 |
Z
zhouyongfei 已提交
1128

1129 1130
**返回值:** 

W
wz 已提交
1131 1132 1133
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1134

1135
**示例:**
Z
zhouyongfei 已提交
1136

W
wz 已提交
1137
```js
1138 1139 1140 1141
async function InputMethodEngine() {
    var length = 1;
    await TextInputClient.deleteBackward(length).then((result) => {
        if (result) {
Z
zhaolinglan 已提交
1142
            console.info('Success to deleteBackward.(promise) ');
1143
        } else {
Z
zhaolinglan 已提交
1144
            console.error('Failed to deleteBackward.(promise) ');
1145 1146
        }
    }).catch((err) => {
Z
zhaolinglan 已提交
1147
        console.error('deleteBackward promise err: ' + err.msg);
1148 1149
    });
}
W
wz 已提交
1150
```
1151
### sendKeyFunction<sup>deprecated</sup>
Z
zhouyongfei 已提交
1152 1153 1154

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

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

1157 1158 1159 1160 1161
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.sendKeyFunction](#InputClient.sendKeyFunction)替代
>
> 从 API version 8开始支持。

1162
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1163

1164
  **参数:**
Z
zhouyongfei 已提交
1165

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

1171 1172
  **示例:**

W
wz 已提交
1173
```js
1174
TextInputClient.sendKeyFunction(keyFunction, (err, result) => {
Z
zhaolinglan 已提交
1175 1176
    if (err === undefined) {
        console.error('sendKeyFunction callback result---err: ' + err.msg);
1177 1178 1179
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1180
        console.info('Success to sendKeyFunction.(callback) ');
1181
    } else {
Z
zhaolinglan 已提交
1182
        console.error('Failed to sendKeyFunction.(callback) ');
1183
    }
W
wz 已提交
1184 1185
});
```
Z
zhouyongfei 已提交
1186

1187
### sendKeyFunction<sup>deprecated</sup>
Z
zhouyongfei 已提交
1188 1189 1190

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

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

1193 1194 1195 1196 1197
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.sendKeyFunction](#InputClient.sendKeyFunction)替代
>
> 从 API version 8开始支持。

1198
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1199

1200 1201
**参数:**

W
wz 已提交
1202 1203 1204
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| action | number | 是 | 编辑框属性。 |
Z
zhouyongfei 已提交
1205

1206 1207
**返回值:**

W
wz 已提交
1208 1209 1210
| 类型                            | 说明                                                         |
| ------------------------------- | ------------------------------------------------------------ |
| Promise&lt;boolean&gt; |  操作成功与否。                |
Z
zhouyongfei 已提交
1211

1212
**示例:**
Z
zhouyongfei 已提交
1213

1214
  ```js
1215 1216 1217
  async function InputMethodEngine() {
      await client.sendKeyFunction(keyFunction).then((result) => {
          if (result) {
Z
zhaolinglan 已提交
1218
              console.info('Success to sendKeyFunction.(promise) ');
1219
          } else {
Z
zhaolinglan 已提交
1220
              console.error('Failed to sendKeyFunction.(promise) ');
1221 1222
          }
      }).catch((err) => {
Z
zhaolinglan 已提交
1223
          console.error('sendKeyFunction promise err:' + err.msg);
1224 1225
      });
  }
Z
zhouyongfei 已提交
1226
  ```
W
wz 已提交
1227

1228
### insertText<sup>deprecated</sup>
Z
zhouyongfei 已提交
1229 1230 1231

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

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

1234 1235 1236 1237 1238
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.insertText](#InputClient.insertText)替代
>
> 从 API version 8开始支持。

1239
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1240

1241
**参数:**
Z
zhouyongfei 已提交
1242

W
wz 已提交
1243 1244 1245 1246
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
| callback | AsyncCallback&lt;boolean&gt; | 是 | 操作成功与否。 |
Z
zhouyongfei 已提交
1247

1248 1249
**示例:**

W
wz 已提交
1250
```js
1251
TextInputClient.insertText('test', (err, result) => {
Z
zhaolinglan 已提交
1252 1253
    if (err === undefined) {
        console.error('insertText callback result---err: ' + err.msg);
1254 1255 1256
        return;
    }
    if (result) {
Z
zhaolinglan 已提交
1257
        console.info('Success to insertText.(callback) ');
1258
    } else {
Z
zhaolinglan 已提交
1259
        console.error('Failed to insertText.(callback) ');
1260
    }
W
wz 已提交
1261 1262
});
```
Z
zhouyongfei 已提交
1263

1264
### insertText<sup>deprecated</sup>
Z
zhouyongfei 已提交
1265 1266

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

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

1270 1271 1272 1273 1274
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.insertText](#InputClient.insertText)替代
>
> 从 API version 8开始支持。

1275
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1276

1277 1278
**参数:**

W
wz 已提交
1279 1280 1281
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| text | string | 是 | 文本。 |
Z
zhouyongfei 已提交
1282

1283
**返回值:**  
W
wz 已提交
1284 1285 1286 1287

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

1289
**示例:**
Z
zhouyongfei 已提交
1290

1291
  ```js
1292 1293 1294
  async function InputMethodEngine() {
      await TextInputClient.insertText('test').then((result) => {
          if (result) {
Z
zhaolinglan 已提交
1295
              console.info('Success to insertText.(promise) ');
1296
          } else {
Z
zhaolinglan 已提交
1297
              console.error('Failed to insertText.(promise) ');
1298 1299
          }
      }).catch((err) => {
Z
zhaolinglan 已提交
1300
          console.error('insertText promise err: ' + err.msg);
1301 1302
      });
  }
Z
zhouyongfei 已提交
1303
  ```
W
wz 已提交
1304

1305
### getEditorAttribute<sup>deprecated</sup>
Z
zhouyongfei 已提交
1306 1307 1308

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

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

1311 1312 1313 1314 1315
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getEditorAttribute](#InputClient.getEditorAttribute)替代
>
> 从 API version 8开始支持。

1316
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1317

1318 1319
**参数:**

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

1324 1325
**示例:**

1326
  ```js
1327
  TextInputClient.getEditorAttribute((err, editorAttribute) => {
Z
zhaolinglan 已提交
1328 1329
      if (err === undefined) {
          console.error('getEditorAttribute callback result---err: ' + err.msg);
1330 1331
          return;
      }
Z
zhaolinglan 已提交
1332 1333
      console.log('editorAttribute.inputPattern(callback): ' + JSON.stringify(editorAttribute.inputPattern));
      console.log('editorAttribute.enterKeyType(callback): ' + JSON.stringify(editorAttribute.enterKeyType));
1334
  });
Z
refresh  
zhouyongfei 已提交
1335
  ```
Z
zhouyongfei 已提交
1336

1337
### getEditorAttribute<sup>deprecated</sup>
Z
zhouyongfei 已提交
1338

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

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

1343 1344 1345 1346 1347
> **说明:** 
> 从API version 9开始废弃, 建议使用[InputClient.getEditorAttribute](#InputClient.getEditorAttribute)替代
>
> 从 API version 8开始支持。

1348
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
Z
zhouyongfei 已提交
1349

1350 1351
**返回值:**

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

1356 1357
**示例:**

1358
   ```js
1359 1360
   async function InputMethodEngine() {
       await TextInputClient.getEditorAttribute().then((editorAttribute) => {
Z
zhaolinglan 已提交
1361 1362
           console.info('editorAttribute.inputPattern(promise): ' + JSON.stringify(editorAttribute.inputPattern));
           console.info('editorAttribute.enterKeyType(promise): ' + JSON.stringify(editorAttribute.enterKeyType));
1363
       }).catch((err) => {
Z
zhaolinglan 已提交
1364
           console.error('getEditorAttribute promise err: ' + err.msg);
1365 1366
       });
   }
Z
zhouyongfei 已提交
1367 1368
   ```

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

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

1373 1374 1375 1376 1377
### sendKeyFunction<sup>9+</sup>

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

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

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

1381
  **参数:**
Z
zhaolinglan 已提交
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 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| 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 已提交
1832 1833 1834 1835 1836 1837
| direction | number                    | 是   | 光标移动方向。 |
| callback  | AsyncCallback&lt;void&gt; | 是   | 回调函数。     |

**示例:**

```js
1838
InputClient.moveCursor(inputMethodAbility.CURSOR_xxx, (err) => {
Z
zhaolinglan 已提交
1839 1840
    if (err === undefined) {
        console.error('moveCursor callback result---err: ' + err.msg);
Z
zhaolinglan 已提交
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857
        return;
    }
});
```

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

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

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

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

**参数:**

| 参数名    | 类型   | 必填 | 说明           |
| --------- | ------ | ---- | -------------- |
Z
zhaolinglan 已提交
1858
| direction | number | 是   | 光标移动方向。 |
Z
zhaolinglan 已提交
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868

**返回值:**  

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

**示例:**

  ```js
1869 1870
async function InputMethodAbility() {
    await InputClient.moveCursor(inputMethodAbility.CURSOR_xxx).then(async (err) => {
Z
zhaolinglan 已提交
1871 1872
        console.log('moveCursor success');
    }).catch((err) => {
Z
zhaolinglan 已提交
1873
        console.error('moveCursor success err: ' + err.msg);
Z
zhaolinglan 已提交
1874 1875 1876 1877
    });
}
  ```

Z
zhouyongfei 已提交
1878 1879 1880 1881
## EditorAttribute<a name="EditorAttribute"></a>

编辑框属性值。

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

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

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

Z
refresh  
zhouyongfei 已提交
1891
按键属性值。
Z
zhouyongfei 已提交
1892

1893
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
Z
刷新  
zhouyongfei 已提交
1894 1895 1896 1897 1898

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