예제 #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);
 }