FMX.Controls3D.TControl3D.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.Controls3D.pas
FMX.Controls3D.hpp
FMX.Controls3D TControl3D

Description

OnDragEnter event dispatcher.

DragEnter is automatically called when a dragged object enters the surface of the control.

Data represents the dragged object.

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

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

See Also