• NX二次开发 克隆


     NXOpen.UF.UFSession theUfSession = NXOpen.UF.UFSession.GetUFSession();
                    try
                    {
                        //初始化
                        NXOpen.UF.UFClone.OperationClass operationClass = NXOpen.UF.UFClone.OperationClass.CloneOperation;
                        theUfSession.Clone.Initialise(operationClass);
                        //添加原装配到克隆装配中,有Add Assembly和Add Part两种方法,此处用Add Assembly
                        NXOpen.UF.UFPart.LoadStatus loadStatus;
                        theUfSession.Clone.AddAssembly(selectPath,out loadStatus);
                        //theUfSession.Clone.AddPart(selectPath);
                        //指定默认的克隆方式
                        NXOpen.UF.UFClone.Action action = NXOpen.UF.UFClone.Action.Clone;
                        theUfSession.Clone.SetDefAction(action);
                        //指定默认文件名的方法
                        NXOpen.UF.UFClone.NamingTechnique namingTechnique = NXOpen.UF.UFClone.NamingTechnique.NamingRule;
                        theUfSession.Clone.SetDefNaming(namingTechnique);
                        //定义新装配的克隆命名规则
                        NXOpen.UF.UFClone.NameRuleDef nameRuleDef;
                        nameRuleDef.type = UFClone.NameRuleType.PrependString;
                        nameRuleDef.new_string = "M8";
                        nameRuleDef.base_string = ""; //在NX7.5版本以前,无需下面这句,但是NX7.5以后的版本中调用,必须添加下面这句,否则会显示克隆出错。
                        NXOpen.UF.UFClone.NamingFailures namingFailures;
                        theUfSession.Clone.InitNamingFailures(out namingFailures);
                        theUfSession.Clone.SetNameRule(ref nameRuleDef, ref namingFailures);
    
                        theUfSession.Clone.SetDefDirectory(@"C:	emp");
    
    
                        //string outputName = "C:\xxxxx.prt";
                        //theUfSession.Clone.SetNaming(selectPath, UFClone.NamingTechnique.DefaultNaming, outputName);
    
                        //theUI.NXMessageBox.Show("", NXMessageBox.DialogType.Information, namingFailures.n_failures.ToString());
                        theUfSession.Clone.PerformClone(ref namingFailures);
                        //theUfSession.Clone.Terminate();
                    }
                    catch (Exception ex1)
                    {
                        theUI.NXMessageBox.Show("Block Styler", NXMessageBox.DialogType.Error, ex1.ToString());
    
    
                    }
                    finally
                    {
                        theUfSession.Clone.Terminate();
                    }
    

      

  • 相关阅读:
    Material Design系列第八篇——Creating Lists and Cards
    Androidの解决自动旋转导致activity重启问题
    cnBlogs博客推荐
    yii中sphinx,Ajax搜索分页
    yii框架中应用jquery表单验证插件
    百度一键分享
    yii框架中邮箱激活(数字签名)
    yii框架中保存第三方登录信息
    yii添加行的增删改查
    yii遍历行下的每列数据(小1月考)
  • 原文地址:https://www.cnblogs.com/bizca/p/6198257.html
Copyright © 2020-2023  润新知