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.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll
#Declaration
[DefaultValue("")]
[XtraSerializableProperty]
[GridUIProperty]
public string UnboundExpression { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
String | A String that specifies an expression used to evaluate values for this column. |
#Remarks
The DXGrid 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. The Expressions section describes the syntax for creating expressions.
To learn more, see Unbound Columns and Expression Operators, Functions and Constants.