Vcl.ComCtrls.TCustomTreeView.DoEndDrag

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoEndDrag(Target: TObject; X, Y: Integer); override;

C++

DYNAMIC void __fastcall DoEndDrag(System::TObject* Target, int X, int Y);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomTreeView

Description

End drag event dispatcher.

DoEndDrag is called automatically when the user stops dragging the tree view or one of its items. The drag operation may end either because the tree view was dropped on the object specified by Target, or because the user canceled the drag operation (if Target is nil (Delphi) or NULL (C++)).

Override DoEndDrag to perform any additional adjustments when the user stops dragging the tree view.

See Also