Back to Devexpress

UnboundColumnType Enum

windowsforms-devexpress-dot-xtratreelist-dot-data.md

latest2.3 KB
Original Source

UnboundColumnType Enum

Enumerates data types that columns can have in unbound mode.

Namespace : DevExpress.XtraTreeList.Data

Assembly : DevExpress.XtraTreeList.v25.2.dll

NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

csharp
[EditorBrowsable(EditorBrowsableState.Never)]
[ResourceFinder(typeof(ResFinder), "PropertyNamesRes")]
public enum UnboundColumnType
vb
<ResourceFinder(GetType(ResFinder), "PropertyNamesRes")>
<EditorBrowsable(EditorBrowsableState.Never)>
Public Enum UnboundColumnType

Members

NameDescription
Object

Indicates that the column contains values of any type.

| | Integer |

Indicates that the column contains integer (16, 32, 64), Byte, SByte, or UInt (16, 32, 64) values.

| | 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.

|

The following properties accept/return UnboundColumnType values:

See Also

UnboundType

DevExpress.XtraTreeList.Data Namespace