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 //1.UF_LAYER_WORK_LAYER 设置为工作图层 12 //2.UF_LAYER_ACTIVE_LAYER 设置图层可见可编辑 13 //3.UF_LAYER_REFERENCE_LAYER 设置图层仅可见 14 //4.UF_LAYER_INACTIVE_LAYER 设置图层不可见不可编辑 15 int layer_status = 0; 16 UF_LAYER_ask_status(1, &layer_status); 17 char msg1[256]; 18 sprintf_s(msg1, "%d", layer_status); 19 uc1601(msg1, 1); 20 21 UF_terminate(); 22 23 Caesar卢尚宇 24 2019年11月13日
原文地址:https://www.cnblogs.com/nxopen2018/p/11848012.html
时间: 2024-10-09 09:18:50