Vcl.Controls.TCMDockClient

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TCMDockClient = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    DockSource: TDragDockObject;
    MousePos: TSmallPoint;
    MousePosFiller: TDWordFiller;
    Result: LRESULT;
  end;

C++

struct DECLSPEC_DRECORD TCMDockClient
{
public:
    unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
    TDragDockObject* DockSource;
    System::Types::TSmallPoint MousePos;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MousePosFiller;
#endif /* _WIN64 */
    NativeInt Result;
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

Beschreibung

TCMDockClient wird mit einer CM_DOCKCLIENT-Botschaft verwendet.

Ein Objekt des Typs TCMDockClient wird mit einer CM_DOCKCLIENT-Botschaft verwendet. Die folgende Tabelle führt die in TCMDockClient enthaltenen Felder auf:



Feld Bedeutung

Msg

Enthält den Windows-Botschaftscode.

DockSource

Enthält Drag&Dock-Informationen für ein Steuerelement.

MousePos

Enthält die Position des Mauscursors.

Result

Enthält den Rückgabewert der Anwendung, von der die Botschaft verarbeitet wird.



Der TCMDockClient wird intern verwendet.

Siehe auch