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

TreeList.AfterDropNode Event

Fires after a node is dropped.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

[DXCategory("DragDrop")]
public event AfterDropNodeEventHandler AfterDropNode

Event Data

The AfterDropNode event's data class is DevExpress.XtraTreeList.AfterDropNodeEventArgs.

Remarks

TreeList control nodes can be moved using drag-and-drop operations if the TreeListOptionsDragAndDrop.DragNodesMode option (accessible through the TreeList.OptionsBehavior property) is set to Single or Multiple.

The AfterDropNode event fires after a node has been dropped. The AfterDropNodeEventArgs.Node property allows you to determine the node being dropped. To get the destination parent node, read the DestinationNode property.

See Also