FMX.Controls.TControl.DragEnter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Controls.pas
FMX.Controls.hpp
FMX.Controls TControl

Description

OnDragEnter event dispatcher.

Data specifies the dragged object.

Point specifies the current point of the mouse cursor within the client area of the control.

A control calls DragEnter when a dragged object enters the control area.

Override the protected DragEnter method to provide other responses when a dragged object enters the control area.

See Also