码迷,mamicode.com
首页 > 其他好文 > 详细

NX二次开发-UFUN遍历图层UF_LAYER_cycle_by_layer

时间:2019-11-13 22:32:20      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:ima   tin   lis   图片   alt   class   print   二次开发   http   

 1 NX11+VS2013
 2 
 3 #include <uf.h>
 4 #include <uf_layer.h>
 5 #include <uf_ui.h>
 6 
 7 
 8 UF_initialize();
 9 
10 UF_UI_open_listing_window();
11 //遍历图层
12 tag_t object_tag = NULL_TAG;
13 UF_LAYER_cycle_by_layer(2, &object_tag);//2为遍历第2层里的所有对象(为0是所有图层)
14 while (object_tag != NULL_TAG)
15 {
16     //转换
17     char msg[256];
18     sprintf_s(msg, "%d", object_tag);
19     //打印
20     UF_UI_write_listing_window(msg);
21     UF_UI_write_listing_window("\n");
22     UF_LAYER_cycle_by_layer(2, &object_tag);
23 }
24 
25 UF_terminate();
26 
27 Caesar卢尚宇
28 2019年11月13日

技术图片

NX二次开发-UFUN遍历图层UF_LAYER_cycle_by_layer

标签:ima   tin   lis   图片   alt   class   print   二次开发   http   

原文地址:https://www.cnblogs.com/nxopen2018/p/11853384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!