FMX.Forms.TCommonCustomForm.DragDrop

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DragDrop(const Data: TDragObject; const Point: TPointF); virtual;

C++

virtual void __fastcall DragDrop(const Fmx::Types::TDragObject &Data, const System::Types::TPointF &Point);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

Executes when you drop an object over the surface of this form.

Override DragDrop to add additional code that executes when you drop an object over the surface of this form.

The Data parameter is the object that was dropped onto this form. The Point parameter has the mouse coordinates where the object was dropped.

See Also