Vcl.Controls.TDragRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TDragRec = record

C++

struct DECLSPEC_DRECORD TDragRec
{
public:
    System::Types::TPoint Pos;
    TDragObject* Source;
    void *Target;
    bool Docking;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Description

Specifies the position of the object being dragged.

TDragRec specifies the position of the object being dragged.


The following table lists the fields of TDragRec:

Field Meaning

Pos

Represents the position of the object.

Source

Specifies the object being dragged.

Target

Specifies the target.

Docking

Specifies whether the drag operation ends with a dock operation.


The TDragRec type is used internally.


See Also