Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeListColumn.RealColumnEdit Property

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

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v24.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