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

NX二次开发-UFUN批量操作图层状态UF_LAYER_set_many_layers_status

时间:2019-11-13 13:19:26      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:status   any   二次开发   initial   div   http   mamicode   图层   min   

 1 NX11+VS2013
 2 
 3 #include <uf.h>
 4 #include <uf_ui.h>
 5 #include <uf_layer.h>
 6 
 7 
 8 UF_initialize();
 9 
10 //批量操作图层状态
11 UF_LAYER_status_info_t changes[UF_LAYER_MAX_LAYER];
12 int count = 10;//批量的数量
13 int num = 5;//批量的起始图层
14 for (int i = 0; i < count; i++)
15 {
16     changes[i].layer_number = num + i;
17     changes[i].layer_status = UF_LAYER_REFERENCE_LAYER;
18 }
19 UF_LAYER_set_many_layers_status(count, changes);
20 
21 UF_terminate();
22 
23 Caesar卢尚宇
24 2019年11月13日

技术图片

NX二次开发-UFUN批量操作图层状态UF_LAYER_set_many_layers_status

标签:status   any   二次开发   initial   div   http   mamicode   图层   min   

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

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