Vcl.Controls.TControl.OnEndDrag
Delphi
property OnEndDrag: TEndDragEvent read FOnEndDrag write FOnEndDrag;
C++
__property TEndDragEvent OnEndDrag = {read=FOnEndDrag, write=FOnEndDrag};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | protected | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | TControl |
Description
Occurs when the dragging of an object ends, either by dropping the object or by canceling the dragging.
Use the OnEndDrag event handler to specify any special processing that occurs when dragging stops.
OnEndDrag is an event handler of type Vcl.Controls.TEndDragEvent.
See Also
Code Examples