Skip to main content

TreeListDataColumn.UnboundExpression Property

Gets or sets an expression used to evaluate values for the current unbound column.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public virtual string UnboundExpression { get; set; }

Property Value

Type Default Description
String String.Empty

A string that specifies an expression used to evaluate values for the current column.

Remarks

You can create an unbound column by setting the TreeListDataColumn.UnboundType property to a specific data type. Unbound columns can be populated manually via the ASPxTreeList.CustomUnboundColumnData event, or by specifying an expression via the UnboundExpression used to evaluate values for this field. The Expressions section describes the syntax for creating expressions.

To learn more about unbound columns, see Binding to Data - Unbound Mode.

See Also