FMX.Controls3D.TControl3D.DragOver

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DragOver(const Data: TDragObject; const Point: TPointF; var Operation: TDragOperation); virtual;

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
protected
FMX.Controls3D.pas
FMX.Controls3D.hpp
FMX.Controls3D TControl3D

Description

OnDragOver event dispatcher.

DragOver is automatically called when a dragged object is over the surface of the control.

Data specifies the dragged object.

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

Accept specifies whether the dragged object can be dropped on the control.

Override the protected DragOver method to provide other responses when a dragged object is over the control area.

See Also