GridUnboundColumnType Enum
Lists values that specify possible data types of unbound columns.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
public enum GridUnboundColumnType
Members
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. |
Related API Members
The following properties accept/return GridUnboundColumnType values:
Remarks
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 more information about unbound columns, refer to the following section: Create an Unbound Column.