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

TreeList.NodeChanged Event

Fires after the node’s property has changed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.1.dll

Declaration

[DXCategory("Property Changed")]
public event NodeChangedEventHandler NodeChanged

Event Data

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

Property Description
ChangeType Gets the way the node has been changed.
Node Gets the current Tree List node. Inherited from NodeEventArgs.

Remarks

The NodeChanged event is raised when a node property changes. The node whose properties have changed is identified by the event parameter’s NodeEventArgs.Node property. The NodeChangedEventArgs.ChangeType parameter lets you identify the way the node has changed.

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