Skip to main content

TreeListColumn.RealColumnEdit Property

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

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

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.

See Also