NX二次开发-UFUN按类选择对话框UF_UI_select_with_class_dialog(多选对象)

 1 #include <uf.h>
 2 #include <uf_ui.h>
 3 
 4 UF_initialize();
 5 
 6 
 7 //按类选择对话框
 8 char sCue[] = "按类选择对话框";
 9 char sTitle[] = "按类选择对话框";
10 int iScope = UF_UI_SEL_SCOPE_WORK_PART;
11 int iResponse;
12 int iCount;
13 tag_t* atObject;
14 UF_UI_select_with_class_dialog(sCue, sTitle, iScope, NULL, NULL, &iResponse, &iCount, &atObject);
15 
16 
17 UF_terminate();
18 
19 Caesar卢尚宇
20 2019年7月1日

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