コード例 #1
0
ファイル: CustomProperty.cs プロジェクト: viticm/pap2
 public CustomProperty(CustomClass parent, string strID, string sName, object value, bool bReadOnly, bool bVisible, enumValueType vtType)
 {
     m_combofieldhelper = new CombxHelper(this);
     
     m_parent = parent;
     this.m_strid = strID;
     this.sName = sName;
     this.m_objValue = value;
     this.bReadOnly = bReadOnly;
     this.bVisible = bVisible;
     this.m_vt = vtType;
 }
コード例 #2
0
        public CustomProperty(CustomClass parent, string strID, string sName, object value, bool bReadOnly, bool bVisible, enumValueType vtType)
        {
            m_combofieldhelper = new CombxHelper(this);

            m_parent        = parent;
            this.m_strid    = strID;
            this.sName      = sName;
            this.m_objValue = value;
            this.bReadOnly  = bReadOnly;
            this.bVisible   = bVisible;
            this.m_vt       = vtType;
        }