1 NX11+VS2013
2
3 #include <uf.h>
4 #include <uf_part.h>
5
6
7 UF_initialize();
8
9 //打开part
10 tag_t partTag = NULL_TAG;
11 UF_PART_load_status_t error_status;
12 UF_PART_open("D:\123.prt", &partTag, &error_status);
13 //释放
14 UF_PART_free_load_status(&error_status);
15
16 //关闭part
17 int scope = 0;//0关闭指定部分1关闭部件和所有装配
18 int mode = 0;//0部分修改后询问确认1即使修改了也要卸载2仅在未修改的情况下卸载零件
19 UF_PART_close(partTag, scope, mode);
20
21 UF_terminate();
22
23 Caesar卢尚宇
24 2020年2月14日