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

前提是你 提交于 2021-01-02 15:38:47
 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日

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!