码迷,mamicode.com
首页 > 其他好文 > 详细

NX二次开发-UFUN参数选择对话框UF_UI_select_parameters

时间:2019-07-01 20:00:10      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:count   code   nat   sig   style   double   block   tag   int   

 1 #include <uf.h>
 2 #include <uf_ui.h>
 3 #include <uf_modl.h>
 4 
 5 
 6 UF_initialize();
 7 
 8 //参数选择对话框
 9 UF_FEATURE_SIGN sign = UF_NULLSIGN;
10 double dBlockOrig[3] = { 0.0, 0.0, 0.0 };
11 char* sBlockLengh[3] = { "1", "2", "3" };
12 tag_t tBlockObj;
13 char sMessage[] = "参数选择对话框";
14 int iCount;
15 tag_t* atExp;
16 int iResponse;
17 UF_MODL_create_block1(sign, dBlockOrig, sBlockLengh, &tBlockObj);
18 UF_UI_select_parameters(sMessage, tBlockObj, &iCount, &atExp, &iResponse);
19 UF_free(atExp);
20 
21 UF_terminate();
22 
23 Caesar卢尚宇
24 2019年7月1日

技术图片

NX二次开发-UFUN参数选择对话框UF_UI_select_parameters

标签:count   code   nat   sig   style   double   block   tag   int   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!