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日
原文地址:https://www.cnblogs.com/nxopen2018/p/11848033.html
时间: 2024-11-10 00:28:54