awtk/docs/manual/prop_change_event_t.md

70 lines
1.6 KiB
Markdown
Raw Normal View History

2018-12-20 17:33:31 +08:00
## prop\_change\_event\_t
### 概述
![image](images/prop_change_event_t_0.png)
2018-12-21 11:39:05 +08:00
对象属性变化事件。
2019-01-15 14:34:05 +08:00
----------------------------------
2018-12-20 17:33:31 +08:00
### 函数
<p id="prop_change_event_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#prop_change_event_t_prop_change_event_cast">prop\_change\_event\_cast</a> | 把event对象转prop_change_event_t对象主要给脚本语言使用。 |
2018-12-20 17:33:31 +08:00
### 属性
<p id="prop_change_event_t_properties">
2019-01-17 15:56:15 +08:00
| 属性名称 | 类型 | 说明 |
2018-12-20 17:33:31 +08:00
| -------- | ----- | ------------ |
2018-12-21 12:11:40 +08:00
| <a href="#prop_change_event_t_name">name</a> | char* | 属性的名称。 |
2018-12-21 18:29:29 +08:00
| <a href="#prop_change_event_t_value">value</a> | value\_t* | 属性的值。 |
2018-12-20 17:33:31 +08:00
#### prop\_change\_event\_cast 函数
2018-12-21 18:29:29 +08:00
-----------------------
* 函数功能:
> <p id="prop_change_event_t_prop_change_event_cast"> 把event对象转prop_change_event_t对象主要给脚本语言使用。
2018-12-21 11:39:05 +08:00
* 函数原型:
```
prop_change_event_t* prop_change_event_cast (event_t* event);
```
* 参数说明:
2018-12-20 17:33:31 +08:00
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | prop\_change\_event\_t* | 对象。 |
| event | event\_t* | event对象。 |
#### name 属性
-----------------------
2018-12-21 11:39:05 +08:00
> <p id="prop_change_event_t_name"> 属性的名称。
2018-12-20 17:33:31 +08:00
* 类型char*
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |
#### value 属性
-----------------------
2018-12-21 11:39:05 +08:00
> <p id="prop_change_event_t_value"> 属性的值。
2018-12-20 17:33:31 +08:00
* 类型value\_t*
| 特性 | 是否支持 |
| -------- | ----- |
| 可直接读取 | 是 |
| 可直接修改 | 否 |
| 可脚本化 | 是 |