提交 0b65b404 编写于 作者: Z zhouyongfei

refresh

Signed-off-by: Nzhouyongfei <zhouyongfei@huawei.com>
上级 c5a88fdf
......@@ -14,7 +14,7 @@ import inputMethod from '@ohos.inputMethod';
常量值。
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
**系统能力**:以下各项对应的系统能力均为SystemCapability.Miscservices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
......@@ -25,7 +25,7 @@ import inputMethod from '@ohos.inputMethod';
输入法应用属性。
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
**系统能力**:以下各项对应的系统能力均为SystemCapability.Miscservices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
......@@ -38,7 +38,7 @@ getInputMethodController(): InputMethodController
获取客户端实例[InputMethodController](#InputMethodController)
**系统能力**:SystemCapability.MiscServices.InputMethodFramework
**系统能力**:SystemCapability.Miscservices.InputMethodFramework
- 返回值
......@@ -56,7 +56,7 @@ getInputMethodSetting(): InputMethodSetting
获取客户端设置实例[InputMethodSetting](#InputMethodSetting)
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
......@@ -80,7 +80,7 @@ stopInput(callback: AsyncCallback&lt;boolean&gt;): void
隐藏输入法。
**系统能力**:SystemCapability.MiscServices.InputMethodFramework
**系统能力**:SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -102,7 +102,7 @@ stopInput(): Promise&lt;boolean&gt;
隐藏输入法。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
......@@ -128,7 +128,7 @@ listInputMethod(callback: AsyncCallback&lt;Array&lt;InputMethodProperty&gt;&gt;)
查询已安装的输入法列表。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
| 参数名 | 类型 | 必填 | 说明 |
......@@ -151,7 +151,7 @@ listInputMethod(): Promise&lt;Array&lt;InputMethodProperty&gt;&gt;
查询已安装的输入法列表。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
| 类型 | 说明 |
......@@ -173,7 +173,7 @@ displayOptionalInputMethod(callback: AsyncCallback&lt;void&gt;): void
显示输入法选择对话框。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -194,7 +194,7 @@ displayOptionalInputMethod(callback: AsyncCallback&lt;void&gt;): void
显示输入法选择对话框。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
......
......@@ -13,7 +13,7 @@ import inputMethodEngine from '@ohos.inputMethodEngine';
常量值。
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
**系统能力**:以下各项对应的系统能力均为SystemCapability.Miscservices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
......@@ -50,7 +50,7 @@ getInputMethodEngine(): InputMethodEngine
获取服务端实例。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
......@@ -70,7 +70,7 @@ createKeyboardDelegate(): KeyboardDelegate
获取客户端监听实例。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
......@@ -94,7 +94,7 @@ on(type: 'inputStart', callback: (kbController: KeyboardController, textInputCli
订阅输入法绑定成功事件,使用callback回调返回输入法操作相关实例。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -118,7 +118,7 @@ off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputC
取消订阅输入法绑定成功事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -141,7 +141,7 @@ on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void
订阅输入法事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -164,7 +164,7 @@ off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void
取消订阅输入法事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -190,7 +190,7 @@ on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void
订阅硬键盘事件,使用callback回调返回按键信息。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -215,7 +215,7 @@ off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void
取消订阅硬键盘事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -236,7 +236,7 @@ on(type: 'cursorContextChange', callback: (x: number, y:number, height:number) =
订阅光标变化事件,使用callback回调返回光标信息。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -261,7 +261,7 @@ off(type: 'cursorContextChange', callback?: (x: number, y:number, height:number)
取消订阅光标变化事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -282,7 +282,7 @@ on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegi
订阅文本选择变化事件,使用callback回调返回文本选择信息。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -305,7 +305,7 @@ off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBe
取消订阅文本选择变化事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -327,7 +327,7 @@ on(type: 'textChange', callback: (text: string) => void): void
订阅文本变化事件,使用callback回调返回当前文本内容。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -350,7 +350,7 @@ off(type: 'textChange', callback?: (text: string) => void): void
取消订阅文本变化事件。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -375,7 +375,7 @@ hideKeyboard(callback: AsyncCallback&lt;void&gt;): void
隐藏输入法。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数:
......@@ -397,7 +397,7 @@ hideKeyboard(): Promise&lt;void&gt;
隐藏输入法。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
......@@ -422,7 +422,7 @@ getForward(length:number, callback: AsyncCallback&lt;string&gt;): void
获取光标前固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -444,7 +444,7 @@ getForward(length:number): Promise&lt;string&gt;
获取光标前固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -469,7 +469,7 @@ getBackward(length:number, callback: AsyncCallback&lt;string&gt;): void
获取光标后固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -491,7 +491,7 @@ getBackward(length:number): Promise&lt;string&gt;
获取光标后固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -516,7 +516,7 @@ deleteForward(length:number, callback: AsyncCallback&lt;boolean&gt;): void
删除光标前固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -537,7 +537,7 @@ deleteForward(length:number): Promise&lt;boolean&gt;
删除光标前固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -562,7 +562,7 @@ deleteBackward(length:number, callback: AsyncCallback&lt;boolean&gt;): void
删除光标后固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -584,7 +584,7 @@ deleteBackward(length:number): Promise&lt;boolean&gt;
删除光标后固定长度的文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
| 参数名 | 类型 | 必填 | 说明 |
......@@ -608,7 +608,7 @@ sendKeyFunction(action:number, callback: AsyncCallback&lt;boolean&gt;): void
发送功能键。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -630,7 +630,7 @@ sendKeyFunction(action:number): Promise&lt;boolean&gt;
发送功能键。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
| 参数名 | 类型 | 必填 | 说明 |
......@@ -655,7 +655,7 @@ insertText(text:string, callback: AsyncCallback&lt;boolean&gt;): void
插入文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
......@@ -677,7 +677,7 @@ insertText(text:string): Promise&lt;boolean&gt;
插入文本。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
| 参数名 | 类型 | 必填 | 说明 |
......@@ -702,7 +702,7 @@ getEditorAttribute(callback: AsyncCallback&lt;EditorAttribute&gt;): void
获取编辑框属性值。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 参数
| 参数名 | 类型 | 必填 | 说明 |
......@@ -721,7 +721,7 @@ getEditorAttribute(): Promise&lt;EditorAttribute&gt;
获取编辑框属性值。
**系统能力**: SystemCapability.MiscServices.InputMethodFramework
**系统能力**: SystemCapability.Miscservices.InputMethodFramework
- 返回值
| 类型 | 说明 |
......@@ -737,7 +737,7 @@ getEditorAttribute(): Promise&lt;EditorAttribute&gt;
编辑框属性值。
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
**系统能力**:以下各项对应的系统能力均为SystemCapability.Miscservices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| ------------ | -------- | ---- | ---- | ------------------ |
......@@ -748,7 +748,7 @@ getEditorAttribute(): Promise&lt;EditorAttribute&gt;
按键属性值。
**系统能力**:以下各项对应的系统能力均为SystemCapability.MiscServices.InputMethodFramework
**系统能力**:以下各项对应的系统能力均为SystemCapability.Miscservices.InputMethodFramework
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| --------- | -------- | ---- | ---- | ------------ |
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册