iCAx开思工具箱
标题:
UF_ASSEM_create_component_part怎么创建一个空的零件吗
[打印本页]
作者:
ming2010
时间:
2010-4-9 21:39
标题:
UF_ASSEM_create_component_part怎么创建一个空的零件吗
在VB中
theUfSession.Assem.CreateComponentPart(work_part, "D:\\99\\blocks11.prt", null, null, units, 0, origin, csys, 2, blocks, out instance);
blocks是一个不能为空的tag数组呀那该怎么去设定还是不是用这个函数呢
作者:
xiaoyuily
时间:
2010-4-10 08:31
添加一个空部件? AddPartToAssembly
作者:
ming2010
时间:
2010-4-10 19:33
如果用AddPartToAssembly的话,那用什么函数找到当前工作零件的路径呢
非常感谢!!!
作者:
cam-yp
时间:
2010-4-10 21:50
很少用VB做开发,应该有这个函数的
即使没有,也可以变通一下,临时建立一个点,建立组件后,再从该组件删除这个点不就是空的组件了
作者:
ming2010
时间:
2010-4-14 21:43
谢谢版主回复,问题是这个程序在VB中可以定义为空到C#中就不行了
代码如下:恳请高手解决,非常感谢!!!
theSession = Session.GetSession();
theUfSession = UFSession.GetUFSession();
double[] origin = { 0.0, 0.0, 0.0 };
double[] csys = { 1.0, 0.0, 0.0, 0.0, 1.0, 0.0 };
Tag[] blocks = new Tag[1];
blocks[0] = NXOpen.Tag.Null;
Tag work_part;
Tag instance;
int units;
work_part = theUfSession.Assem.AskWorkPart();
theUfSession.Part.AskUnits(work_part, out units);
MessageBox.Show(work_part.ToString());
theUfSession.Assem.CreateComponentPart(work_part, "blocks11.prt", null, null, units, 0, origin, csys, 2, blocks, out instance);
欢迎光临 iCAx开思工具箱 (https://t.icax.org/)
Powered by Discuz! X3.3