2018-12-20 17:33:31 +08:00
|
|
|
|
## im\_commit\_event\_t
|
|
|
|
|
### 概述
|
|
|
|
|
![image](images/im_commit_event_t_0.png)
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
输入法提交输入的文本事件。
|
2019-01-15 14:34:05 +08:00
|
|
|
|
----------------------------------
|
2020-08-15 12:10:26 +08:00
|
|
|
|
### 函数
|
|
|
|
|
<p id="im_commit_event_t_methods">
|
|
|
|
|
|
|
|
|
|
| 函数名称 | 说明 |
|
|
|
|
|
| -------- | ------------ |
|
|
|
|
|
| <a href="#im_commit_event_t_im_commit_event_init">im\_commit\_event\_init</a> | 初始化im_commit事件。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
### 属性
|
|
|
|
|
<p id="im_commit_event_t_properties">
|
|
|
|
|
|
2019-01-17 15:56:15 +08:00
|
|
|
|
| 属性名称 | 类型 | 说明 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| -------- | ----- | ------------ |
|
2020-10-26 11:53:50 +08:00
|
|
|
|
| <a href="#im_commit_event_t_replace">replace</a> | bool\_t | 是否替换原来的文本。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#im_commit_event_t_text">text</a> | char* | 提交的文本。 |
|
2020-08-15 12:10:26 +08:00
|
|
|
|
#### im\_commit\_event\_init 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="im_commit_event_t_im_commit_event_init">初始化im_commit事件。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
event_t* im_commit_event_init (im_commit_event_t* e, const char* text, bool_t replace);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | event\_t* | 返回事件对象。 |
|
|
|
|
|
| e | im\_commit\_event\_t* | 事件对象。 |
|
|
|
|
|
| text | const char* | 文本。 |
|
|
|
|
|
| replace | bool\_t | 是否替代当前的内容。 |
|
2020-10-26 11:53:50 +08:00
|
|
|
|
#### replace 属性
|
2019-04-22 17:48:54 +08:00
|
|
|
|
-----------------------
|
2020-10-26 11:53:50 +08:00
|
|
|
|
> <p id="im_commit_event_t_replace">是否替换原来的文本。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2019-04-22 17:48:54 +08:00
|
|
|
|
* 类型:bool\_t
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
#### text 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="im_commit_event_t_text">提交的文本。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
* 类型:char*
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|