ColumnBase.UnboundExpression Property
Gets or sets an expression used to evaluate values for this column if it is not bound to a data source field. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Grid
Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
[DefaultValue("")]
[GridUIProperty]
[XtraSerializableProperty]
public string UnboundExpression { get; set; }
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | A String that specifies an expression used to evaluate values for this column. |
Remarks
The Grid Control supports bound and unbound columns. Bound columns obtain their data from data fields in a grid’s data source. Unbound columns are not bound to any field in the data source. These columns must be populated manually by handling the GridControl.CustomUnboundColumnData event or using the UnboundExpression property.
See Also