blazor-devexpress-dot-blazor-7a9bb4bf.md
Lists values that specify possible data types of unbound columns.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public enum GridUnboundColumnType
| Name | Description |
|---|---|
Bound |
The column is bound to a data field. This field specifies the column data type.
|
| Integer |
The column contains Int32 values.
|
| Decimal |
The column contains Decimal values.
|
| DateTime |
The column contains DateTime values.
|
| String |
The column contains String values.
|
| Boolean |
The column contains Boolean values.
|
| Object |
The column contains Object values.
|
The following properties accept/return GridUnboundColumnType values:
To create an unbound column, add a DxGridDataColumn object to the Columns collection, set the column’s UnboundType property to a value of the GridUnboundColumnType enumerator, and specify the FieldName property.
For additional information about unbound columns, refer to the following section: Create an Unbound Column.
See Also