Vcl.Controls.TDockDropEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDockDropEvent = procedure(Sender: TObject; Source: TDragDockObject;
X, Y: Integer) of object;

C++

typedef void __fastcall (__closure *TDockDropEvent)(System::TObject* Sender, TDragDockObject* Source, int X, int Y);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

TDockDropEvent is the type of the OnDockDrop event handler.

Sender is the object on which another object is being dropped.

Source is information about the object that is being dropped.

X and Y are the coordinates of the mouse pointer.

See Also