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

TreeListColumn.RealColumnEdit Property

Gets the repository item that actually specifies the column’s editor.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

[Browsable(false)]
public RepositoryItem RealColumnEdit { get; }

Property Value

Type Description
RepositoryItem

A RepositoryItem descendant that specifies the actual column’s editor.

Remarks

If an editor is not assigned to a column using the TreeListColumn.ColumnEdit or TreeListColumn.ColumnEditNameproperty, the column uses the default editor. The default editor’s type depends on the column’s data type. DateTime columns use the DateEdit editor, Boolean columns use the CheckEdit editor. Columns of other types use the TextEdit editor by default.

If a repository item is explicitly assigned to the column, the RealColumnEdit method returns this repository item. Otherwise, this method returns the default editor.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RealColumnEdit 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.

See Also