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; }
public PropertyInstance(Property Property, ControlTypePropertyType ControlTypePropertyType, PropertyValueType ValueType, PropertyType PropertyType = null) { this.Property = Property; this.ControlTypePropertyType = ControlTypePropertyType; this.ValueType = ValueType; this.PropertyType = PropertyType; }
public QueryTypeInInstance(QueryTypeIn QueryTypeIn, PropertyValueType ValueType) { this.QueryTypeIn = QueryTypeIn; this.ValueType = ValueType; }
public FormParameterInstance(FormParameter FormParameter, PropertyValueType PropertyValueType) { this.FormParameter = FormParameter; this.PropertyValueType = PropertyValueType; }