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

TreeList.DragObjectDrop Event

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

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