Vcl.Controls.TStartDragEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TStartDragEvent = procedure(Sender: TObject;
var DragObject: TDragObject) of object;

C++

typedef void __fastcall (__closure *TStartDragEvent)(System::TObject* Sender, TDragObject* &DragObject);

Properties

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

Description

TStartDragEvent is the function type for an OnStartDrag event.

TStartDragEvent has the following parameters:



Parameter Meaning

Sender

The control that generated the event.

DragObject

The object that is dragged.



See Also