GridColumn.IsUnbound Property
Gets whether the column is unbound.
Namespace: DevExpress.Maui.DataGrid
Assembly: DevExpress.Maui.DataGrid.dll
NuGet Package: DevExpress.Maui.DataGrid
Declaration
public bool IsUnbound { get; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
Use the IsUnbound
property to determine whether a column is bound or unbound.
- A bound column obtains its data from a data field of the grid’s data source (GridColumn.FieldName).
- An unbound column is not bound to any field of the data source. Its values are calculated according to a custom formula (GridColumn.UnboundExpression, DataGridView.CustomUnboundData).
See Also