UnboundColumnType Enum
Contains values that specify the data type and binding mode of columns.
Namespace: DevExpress.Data
Assembly: DevExpress.Data.v14.2.dll
#Declaration
[ResourceFinder(typeof(ResFinder))]
[TypeConverter(typeof(UnboundColumnTypeConverter))]
public enum UnboundColumnType
#Members
Name | Description |
---|---|
Bound | Indicates that the column is bound to a field in the control's underlying data source. The type of data this column contains is determined by the bound field. |
Integer | Indicates that the column is unbound and it contains integer values (the Int32 type). |
Decimal | Indicates that the column is unbound and it contains decimal values (the Decimal type). |
Date |
Indicates that the column is unbound and it contains date/time values (the Date |
String | Indicates that the column is unbound, and it contains string values (the String type). |
Boolean | Indicates that the column is unbound and it contains Boolean values (the Boolean type). |
Object | Indicates that the column is unbound and it contains values of any type. A Text |
#Passed To
You can pass UnboundColumnType values to the ColumnBase.UnboundType property.
#Remarks
Specific data-aware controls support bound and unbound columns. Bound columns obtain their data automatically from the control's underlying data source. The data for unbound columns should be provided manually, by specifying an unbound expression or handling the appropriate event.
Each column in these controls provides a specific property of the UnboundColumnType type, and this specifies the column's data type and binding mode.
To learn more, see Unbound Columns.