GridColumn.IsUnbound Property
Gets whether the column is unbound.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
Declaration
public bool IsUnbound { get; }
Property Value
Type | Description |
---|---|
Boolean | true, if the column is unbound; otherwise, false. |
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.CustomUnboundColumnData).
See Also