maui-devexpress-dot-maui-dot-datagrid-dot-gridcolumn-a9d12a16.md
Gets or sets whether the column is unbound, and the type of data the unbound column stores. This is a bindable property.
Namespace : DevExpress.Maui.DataGrid
Assembly : DevExpress.Maui.DataGrid.dll
NuGet Package : DevExpress.Maui.DataGrid
public UnboundDataType UnboundType { get; set; }
| Type | Description |
|---|---|
| UnboundDataType |
An UnboundDataType value.
|
Available values:
| 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).
| | DateTime |
Indicates that the column is unbound and it contains date/time values (the DateTime type).
| | 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 TextEdit editor is used as an in-place editor for such a column.
|
If the column’s UnboundType property is set to Bound, it’s assumed that this column stores values from a data source field that the column’s FieldName property specifies. Otherwise, the column is unbound and it displays custom values.
To create an unbound column in the grid, do the following.
To populate an unbound column with data, do one of the following.
You can also use the GridColumn.IsUnbound property to obtain whether a column is unbound.
Assume that the DataGridView instance is bound to a collection of orders. An order has the Product.Name, Product.UnitPrice and Quantity fields. This example shows how to add an unbound column (Total) to the grid to calculate each order amount according to the expression: UnitPrice*Quantity.
Implement logic to calculate column values in one of the following ways:
Use the GridColumn.UnboundExpression property:
Handle the DataGridView.CustomUnboundData event:
See Also