Vcl.Controls.TCMDockNotification

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TCMDockNotification = record
    Msg: Cardinal;
    MsgFiller: TDWordFiller;
    Client: TControl;
    NotifyRec: PDockNotifyRec;
    Result: LRESULT;
  end;

C++

struct DECLSPEC_DRECORD TCMDockNotification
{
public:
    unsigned Msg;
#ifndef _WIN64
#else /* _WIN64 */
    Winapi::Messages::TDWordFiller MsgFiller;
#endif /* _WIN64 */
    TControl* Client;
    TDockNotifyRec *NotifyRec;
    NativeInt Result;
};

Eigenschaften

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

Beschreibung

TCMDockNotification wird mit einer CM_DOCKNOTIFICATION-Botschaft verwendet.

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



Feld Bedeutung

Msg

Enthält den Windows-Botschaftscode.

Client

Gibt das Steuerelement an, an das ein anderes Steuerelement angedockt ist.

NotifyRec

Ist ein Zeiger auf eine Struktur, die die Informationen über das Rechteck enthält.

Result

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



Der TCMDockNotification wird intern verwendet.

Siehe auch