网站首页 > 技术文章 正文
UG NX 信息窗口可以非常方便的显示各类信息,也是UG NX重要的用户界面,对于二次开发过程中弹出各种提示信息也非常方便,是一个重要的工具,并且,可以直接保存到文件中。以下是信息的函数列表,下面逐个进行分析及使用实例,欢迎关注评论。
此次新出现的自定数据类型:logical(布尔类型)
1,UF_UI_open_listing_window //打开信息窗口
2,UF_UI_is_listing_window_open //检查信息窗口是否打开,
3,UF_UI_write_listing_window //写文本到信息窗口中
4,UF_UI_save_listing_window //保存信息窗口中的内容到文件中,
5,UF_UI_update_listing_window //刷新信息窗口中的内容
6,UF_UI_close_listing_window //关闭信息窗口,
7,UF_UI_exit_listing_window //退出信息窗口,即释放掉信息窗口。
一,UF_UI_open_listing_window //打开信息窗口
原型:int UF_UI_open_listing_window(void)
使用实例():UF_UI_open_listing_window();
所有函数都可以用一个int变量接受返回值,检验是否成功。
此时会如下图的信息窗口。
二,UF_UI_is_listing_window_open //检查信息窗口是否打开
原型:int UF_UI_is_listing_window_open(logical * response );
使用实例():
logical response;
UF_UI_is_listing_window_open( &response );
新类型:logical
logical的定义是typedef bool logical;
可以看出是一个布尔变量,存放的是TRUE或FALSE。
三,UF_UI_write_listing_window //写文本到信息窗口中
原型:int UF_UI_write_listing_window(const char * string );
const char *string //形参为一个字符串
使用实例:
char message[ ] = {"写入信息"};
UF_UI_write_listing_window(message);
UF_UI_write_listing_window("\n"); //换行
UF_UI_write_listing_window("\t");
UF_UI_write_listing_window(message);
四,UF_UI_save_listing_window //保存信息窗口中的内容到文件中,
原型:int UF_UI_save_listing_window(char * filename);
filename to which Information Window contents is written.
将信息窗口内容写入所指向的文件名。
使用实例:
char *filename_txt = "c:/test.txt"; //保存为txt格式文本,
UF_UI_save_listing_window(filename_txt );
char *filename_xls = "c:/test.xls"; //也可以是xls格式或其它支持格式。
UF_UI_save_listing_window(filename_xls );
下图为写入文件图例,可以看到,都按格式输出。
五,UF_UI_update_listing_window //刷新信息窗口中的内容
非必需时不使用,强制刷新窗口信息。
使用实例:UF_UI_update_listing_window();
六,UF_UI_close_listing_window //关闭信息窗口,
使用实例:UF_UI_close_listing_window();
七,UF_UI_exit_listing_window //退出信息窗口,释放掉信息窗口。
使用实例:UF_UI_exit_listing_window();
如果要再次使用信息窗口,需要再次使用UF_UI_open_listing_window //打开信息窗口。
- 上一篇: 文件基础操作
- 下一篇: Linux系统调用源码分析(二)
猜你喜欢
- 2024-11-22 正点原子I.MX6U嵌入式Linux C应用编程:第二章《文件I/O基础》
- 2024-11-22 如何将Python函数输出内容同时打印到屏幕和文件
- 2024-11-22 3个重点,20个函数分析,浅析FFmpeg转码过程
- 2024-11-22 Linux驱动基础篇:hello驱动
- 2024-11-22 Python自带的库(open函数)读写txt、csv、json、XML、Excel文件
- 2024-11-22 UG NX OPEN二次开发实例:UF,C语言编程,创建圆柱体,API文档翻译
- 2024-11-22 openGauss SEQUENCE函数
- 2024-11-22 Python文件操作的步骤
- 2024-11-22 Python读取与写入Excel模块:openpyxl
- 2024-11-22 PHP imap_open函数任意命令执行漏洞
- 最近发表
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)