FMX.ExtCtrls.TDropTarget.OnDropped

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDropped: TDragDropEvent read FOnDrop write FOnDrop;

C++

__property Fmx::Types::TDragDropEvent OnDropped = {read=FOnDrop, write=FOnDrop};

Properties

Type Visibility Source Unit Parent
event published
FMX.ExtCtrls.pas
FMX.ExtCtrls.hpp
FMX.ExtCtrls TDropTarget

Description

Occurs when the dragged object has been dropped over the TDropTarget control.

Write an OnDropped event handler to perform special processing when the dragged object has been dropped over the TDropTarget control.

Note: OnDropped will occur only if the dragged object is accepted by the TDropTarget control.

See Also