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

TreeList.EditingValue Property

Gets or sets the cell value being edited.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

[Browsable(false)]
public virtual object EditingValue { get; set; }

#Property Value

Type Description
Object

An object representing the currently edited cell value. null (Nothing in Visual Basic) if editing is not being performed at the moment.

#Remarks

When a cell value is being edited you can access it via the EditingValue property. If editing is not being performed this property returns null (Nothing in Visual Basic). Assignment to this property is not in effect in such an instance.

When a cell is being edited you can obtain the column and node to which it belongs via the TreeList.FocusedColumn and TreeList.FocusedNode properties. The type of a column can be obtained via the TreeListColumn.ColumnType property of a column. You can use this information to perform required typecasts.

See Also