zoukankan      html  css  js  c++  java
  • 【NX二次开发】Block UI 对象颜色选择器

    属性说明

    常规         类型 描述
        BlockID     String 控件ID
        Enable     Logical 是否可操作
        Group     Logical 是否分组
        Label     Utfstring 标题
        Show     Logical 是否可见
    其他            
        Localize     Logical 是否本地化
        RetainValue Logical 是否保存值
        附件        
            Bottom Attachment 底部
            Left Attachment
            Right Attachment
            Top Attachment 顶部
    特定于块            
        BalloonTooltipImage String 标题气泡提示图片
        BalloonTooltipLayout Enum 气泡提示类型
        BalloonTooltipText Utfstring 标题气泡提示文本
        NumberSelectable Integer 可选择数量
        Value Stlvector 色号
         
    //获取选择的颜色色号
    PropertyList *blockColorProps = blockColor->GetProperties();
    std::vector<int> color = blockColorProps->GetIntegerVector("Value");
    delete blockColorProps;
    blockColorProps = NULL;
  • 相关阅读:
    软工实践总结
    Beta总结
    beta冲刺6/7
    beta冲刺5/7
    Beta冲刺4/7
    beta冲刺3/7
    beta冲刺2/7
    beta冲刺1/7
    答辩总结
    ES6中的块级作用域与函数声明
  • 原文地址:https://www.cnblogs.com/KMould/p/13345695.html
Copyright © 2011-2022 走看看