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

TreeList.CellValueChanged Event

Fires immediately after a cell editor is closed if the editor’s value has been modified.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.1.dll

Declaration

[DXCategory("Property Changed")]
public event CellValueChangedEventHandler CellValueChanged

Event Data

The CellValueChanged event's data class is CellValueChangedEventArgs. The following properties provide information specific to this event:

Property Description
Column Gets a column to which the cell processed by an event belongs. Inherited from CellEventArgs.
Node Gets the current Tree List node. Inherited from NodeEventArgs.
Value Gets the new value assigned to a cell.

Remarks

Cell values are modified by means of in-place editors. End-users can click a cell or press the ENTER, F2 or SPACE key when a cell is focused to invoke an in-place editor. Clicking outside the edited cell or pressing the ENTER key when a cell is being edited results in closing the editor. If the in-place editor’s value has been modified before closing the editor, the CellValueChanged event is raised. The event’s parameters allow you to identify the cell’s column and node and obtain the newly assigned value.

The following code snippets (auto-collected from DevExpress Examples) contain references to the CellValueChanged event.

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