Пример #1
0
 public ControlInstance(Control Control, ControlType ControlType, PropertyValueType ControlValueType, List <PropertyInstance> Properties)
 {
     this.Control          = Control;
     this.ControlType      = ControlType;
     this.Properties       = Properties;
     this.ControlValueType = ControlValueType;
 }
        public OperandValue(int operandID, PropertyValueType valueType, string serializedValue)
        {
            this.OperandID = operandID;
            this.ValueType = valueType;

            this._value = new DataTable();
            this._value.Columns.Add(_columnName);
            this.SetSerializedValue(serializedValue);
        }
 public QueryTypeOutInstance(QueryTypeOut QueryTypeOut, PropertyValueType ValueType)
 {
     this.QueryTypeOut = QueryTypeOut;
     this.ValueType    = ValueType;
 }
Пример #4
0
 public PropertyInstance(Property Property, ControlTypePropertyType ControlTypePropertyType, PropertyValueType ValueType, PropertyType PropertyType = null)
 {
     this.Property = Property;
     this.ControlTypePropertyType = ControlTypePropertyType;
     this.ValueType    = ValueType;
     this.PropertyType = PropertyType;
 }
Пример #5
0
 public QueryTypeInInstance(QueryTypeIn QueryTypeIn, PropertyValueType ValueType)
 {
     this.QueryTypeIn = QueryTypeIn;
     this.ValueType   = ValueType;
 }
 public FormParameterInstance(FormParameter FormParameter, PropertyValueType PropertyValueType)
 {
     this.FormParameter     = FormParameter;
     this.PropertyValueType = PropertyValueType;
 }