Vcl.Controls.TCMDockNotification

提供: RAD Studio API Documentation
移動先: 案内検索

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;
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
Vcl.Controls.pas
Vcl.Controls.hpp
Vcl.Controls Vcl.Controls

説明

TCMDockNotification は、CM_DOCKNOTIFICATION メッセージと共に使用されます。

TCMDockNotification 型のオブジェクトは、CM_DOCKNOTIFICATION メッセージと共に使用されます。次の表に、TCMDockNotification に含まれるフィールドを示します。



フィールド 意味

Msg

Windows メッセージ コードを表します。

Client

他のコントロールをドッキングしているコントロールを指定します。

NotifyRec

矩形の情報を含む構造体へのポインタ。

Result

メッセージを処理するアプリケーションから返される値を保持します。



TCMDockNotification 型は、内部で使用されます。

関連項目