TreeList.NodeChanged Event
In This Article
Fires after the node’s property has changed.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#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 |
---|---|
Change |
Gets the way the node has been changed. |
Node |
Gets the current Tree List node.
Inherited from Node |
Node |
Gets the collection that contains the current node. |
#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.
See Also