예제 #1
0
파일: Field.cs 프로젝트: jjg0519/OA
 public Field(string fieldName, string captionName, Constant.CtrlType controlType, bool isNeed)
 {
     _fieldName   = fieldName;
     _captionName = captionName;
     _controlType = controlType;
     _isNeed      = isNeed;
 }
예제 #2
0
파일: Field.cs 프로젝트: jjg0519/OA
 public Field(string fieldName, string captionName, Constant.CtrlType controlType, bool isNeed, double min, double max)
 {
     _fieldName   = fieldName;
     _captionName = captionName;
     _controlType = controlType;
     _isNeed      = isNeed;
     _minValue    = min;
     _maxValue    = max;
 }