首页 > Windows开发 > 详细

NX二次开发-NXOPEN C#UF遍历函数theUfSession.Obj.CycleObjsInPart

时间:2020-06-23 22:43:06      阅读:133      评论:0      收藏:0      [点我收藏+]
NX9+VS2012

using
System; using NXOpen; using NXOpen.UF; using NXOpen.Utilities; //遍历当前显示部件所有实体 Tag PartTag = Tag.Null; theUfSession.Obj.CycleObjsInPart(theUfSession.Part.AskDisplayPart(), UFConstants.UF_solid_type, ref PartTag); while (PartTag != Tag.Null) { int type1; int subtype1; theUfSession.Obj.AskTypeAndSubtype(PartTag, out type1, out subtype1);//获得类型和子类型 if (type1 == UFConstants.UF_solid_type & subtype1 == UFConstants.UF_solid_body_subtype)//判断实体类型 { //设置颜色 theUfSession.Obj.SetColor(PartTag, 186); } theUfSession.Obj.CycleObjsInPart(theUfSession.Part.AskDisplayPart(), UFConstants.UF_solid_type, ref PartTag); } Caesar卢尚宇 2020年6月23日

技术分享图片

NX二次开发-NXOPEN C#UF遍历函数theUfSession.Obj.CycleObjsInPart

原文:https://www.cnblogs.com/nxopen2018/p/13184730.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!