NX二次开发-UFUN拾取草图尺寸对话框UF_UI_select_sketch_dimensions

 1 #include <uf.h>
 2 #include <uf_ui.h>
 3 #include <uf_sket.h>
 4 
 5 
 6 
 7 UF_initialize();
 8 
 9 //拾取草图尺寸对话框
10 char sMessage[] = "拾取草图尺寸对话框";
11 tag_t sketch_tag;
12 int count;
13 tag_t* exp_tags = NULL;
14 int response;
15 UF_SKET_ask_active_sketch(&sketch_tag);
16 UF_UI_select_sketch_dimensions(sMessage, sketch_tag, &count, &exp_tags, &response);
17 UF_free(exp_tags);
18 
19 
20 UF_terminate();
21 
22 Caesar卢尚宇
23 2019年7月1日

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