zoukankan      html  css  js  c++  java
  • NXOpen 判断部件加载状态和部件抑制状态

    //获取部件加载状态
    bool isloading = true;
    Part *resCurrentProtype = dynamic_cast<Part *>(component1->Prototype());

    if(resCurrentProtype == NULL)
    {
    isloading = false;// 不加载为false 全加载和部份加载为true
    }


    //获取部件抑制状态
    bool suppressedState = true ;
    if(component1->IsSuppressed()||component1->Prototype()==NULL)
    {
    suppressedState = false ; // 抑制的和空的为false
    }

    //判断装配组件Component是否加载状态
    bool isComponentLoad(Assemblies::Component *component)
    {
    bool isbool = true;
    Part *resCurrentProtype = dynamic_cast<Part *>(component->Prototype());

    if(resCurrentProtype == NULL)
    {
    isbool = false;
    }
    return isbool;
    }

    //判断装配组件Component是否抑制
    bool suppressedState(Assemblies::Component *component)
    {
    bool suppressedState = true ;
    if(component->IsSuppressed()||component->Prototype()==NULL)
    {
    suppressedState = false ; // 抑制的和空的为false
    }
    }

    怡宁塑胶模具设计
  • 相关阅读:
    初识函数定义与调用 * 和 **
    文件操作
    小程序缓存数据
    调用外部的方法
    小程序订单的待付款实现倒计时(秒)
    小程序上线流程
    微信小程序点击保存图片到相册
    修改头像
    点击保存图片
    小程序的学习王战
  • 原文地址:https://www.cnblogs.com/hqsalanhuang/p/14308169.html
Copyright © 2011-2022 走看看