awtk/docs/manual/conf_xml_t.md
2022-12-05 12:10:53 +08:00

73 lines
1.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## conf\_xml\_t
### 概述
![image](images/conf_xml_t_0.png)
conf xml对象。
----------------------------------
### 函数
<p id="conf_xml_t_methods">
| 函数名称 | 说明 |
| -------- | ------------ |
| <a href="#conf_xml_t_conf_xml_create">conf\_xml\_create</a> | 创建一个空的conf对象。 |
| <a href="#conf_xml_t_conf_xml_load">conf\_xml\_load</a> | 从指定URL加载XML对象。 |
| <a href="#conf_xml_t_conf_xml_save_as">conf\_xml\_save\_as</a> | 将doc对象保存到指定URL。 |
#### conf\_xml\_create 函数
-----------------------
* 函数功能:
> <p id="conf_xml_t_conf_xml_create">创建一个空的conf对象。
* 函数原型:
```
tk_object_t* conf_xml_create ();
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | tk\_object\_t* | 返回配置对象。 |
#### conf\_xml\_load 函数
-----------------------
* 函数功能:
> <p id="conf_xml_t_conf_xml_load">从指定URL加载XML对象。
* 函数原型:
```
tk_object_t* conf_xml_load (const char* url, bool_t create_if_not_exist);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | tk\_object\_t* | 返回配置对象。 |
| url | const char* | 路径(通常是文件路径)。 |
| create\_if\_not\_exist | bool\_t | 如果不存在是否创建。 |
#### conf\_xml\_save\_as 函数
-----------------------
* 函数功能:
> <p id="conf_xml_t_conf_xml_save_as">将doc对象保存到指定URL。
* 函数原型:
```
ret_t conf_xml_save_as (tk_object_t* obj, const char* url);
```
* 参数说明:
| 参数 | 类型 | 说明 |
| -------- | ----- | --------- |
| 返回值 | ret\_t | 返回RET\_OK表示成功否则表示失败 |
| obj | tk\_object\_t* | doc对象。 |
| url | const char* | 保存的位置。 |