windowsforms-devexpress-dot-xtratreelist-dot-columns-dot-treelistcolumn-71f6b1c7.md
Gets the column’s data type.
Namespace : DevExpress.XtraTreeList.Columns
Assembly : DevExpress.XtraTreeList.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList
[Browsable(false)]
public Type ColumnType { get; }
<Browsable(False)>
Public ReadOnly Property ColumnType As Type
| Type | Description |
|---|---|
| Type |
A Type value that indicates the column’s data type.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ColumnType property.
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.
winforms-treelist-expression-editor-xpview/CS/E1887/Form1.cs#L72
public Type FieldType { get { return column == null ? null : column.ColumnType; } }
winforms-treelist-expression-editor-xpview/VB/E1887/Form1.vb#L90
Get
Return If(column Is Nothing, Nothing, column.ColumnType)
End Get
See Also