Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeList.DragObjectDrop Event

Fires immediately after the drag and drop operation has been completed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

public event DragObjectDropEventHandler DragObjectDrop

#Event Data

The DragObjectDrop event's data class is DevExpress.XtraTreeList.DragObjectDropEventArgs.

#Remarks

Handle the DragObjectDrop event to perform actions when end-users finish dragging column headers. This can be used, for instance, to perform any cleanup after handling the TreeList.DragObjectStart event.

The event serves only as a notification that the operation has been completed. To control whether column headers can be dropped at a particular position, handle the TreeList.DragObjectOver event.

See Also