FMX.Controls3D.TDragOverEvent3D

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDragOverEvent3D = procedure(Sender: TObject; const Data: TDragObject; const Point: TPoint3D;
var Operation: TDragOperation) of object;

C++

typedef void __fastcall (__closure *TDragOverEvent3D)(System::TObject* Sender, const Fmx::Types::TDragObject &Data, const System::Math::Vectors::TPoint3D &Point, Fmx::Types::TDragOperation &Operation);

Properties

Type Visibility Source Unit Parent
type
typedef
public
FMX.Controls3D.pas
FMX.Controls3D.hpp
FMX.Controls3D FMX.Controls3D

Description

Procedural type used by all OnDragOver events.

Sender is the object that issues the event call.

Data is the object that is being dragged.

Point is the position in space of the mouse pointer while dragging the object.

Accept specifies whether the control that you are about to drop onto accepts the dragged object.

See Also