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

TreeListView.NodeChanged Event

Occurs after the node’s property has changed.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.dll

Declaration

public event TreeListNodeChangedEventHandler NodeChanged

Event Data

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

Property Description
ChangeType Gets the way in which the node has changed.
Node Gets the changed node.

Remarks

The NodeChanged event is raised each time a node property changes. The node whose properties has changed is identified by the event parameter’s TreeListNodeChangedEventArgs.Node property. The TreeListNodeChangedEventArgs.ChangeType parameter lets you identify the way the node has changed.

See Also