Skip to main content
A newer version of this page is available. .

UnboundColumnType Enum

Enumerates data types that columns can have in unbound mode.

Namespace: DevExpress.XtraTreeList.Data

Assembly: DevExpress.XtraTreeList.v18.1.dll

Declaration

[TypeConverter(typeof(EnumTypeConverter))]
[ResourceFinder(typeof(ResFinder), "PropertyNamesRes")]
public enum UnboundColumnType

Members

Name Description
Object

Indicates that the column contains values of any type.

Integer

Indicates that the column contains integer values (the Int32 type).

Decimal

Indicates that the column contains decimal values (the Decimal type).

DateTime

Indicates that the column contains date-time values (the DateTime type).

String

Indicates that the column contains string values (the String type).

Boolean

Indicates that the column contains Boolean values (the Boolean type).

Bound

Indicates that the column is bound to a field in the control’s underlying data source. The type of data this column contains is determined by the bound field.

Related API Members

The following properties accept/return UnboundColumnType values:

Remarks

In unbound mode, use the TreeListColumn.UnboundType property to specify the type of data the column stores.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the UnboundColumnType enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also