コード例 #1
0
ファイル: Range.cs プロジェクト: AlexAbramov/gis
        public bool GetCommonAttr(CommonAttr a)
        {
            switch (a)
            {
            case CommonAttr.ReadOnly: return(true);

            default: return(false);
            }
        }
コード例 #2
0
ファイル: View.cs プロジェクト: AlexAbramov/gis
 public bool GetCommonAttr(CommonAttr a)
 {
     return(attr[(int)a]);
 }
コード例 #3
0
 protected void SetCommonAttr(CommonAttr a, bool val)
 {
     attr[(int)a] = val;
 }
コード例 #4
0
ファイル: Object.cs プロジェクト: AlexAbramov/gis
 protected void SetCommonAttr(CommonAttr a, bool val)
 {
     attr[(int)a] = val; UpdateAttr(ObjectField.Attr);
 }
コード例 #5
0
 public bool GetCommonAttr(CommonAttr a)
 {
     return(false);
 }