Vcl.Controls.TDockNotifyRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

 TDockNotifyRec = record
 ClientMsg: Cardinal;
 ClientMsgFiller: TDWordFiller;
 MsgWParam: WPARAM;
 MsgLParam: LPARAM;
 end;

C++

struct DECLSPEC_DRECORD TDockNotifyRec
{
public:
 unsigned ClientMsg;
#ifndef _WIN64
#else /* _WIN64 */
 Winapi::Messages::TDWordFiller ClientMsgFiller;
#endif /* _WIN64 */
 NativeUInt MsgWParam;
 NativeInt MsgLParam;
};

Properties

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

Description

TDockNotifyRec represents the information from a Windows docking notification message, and PDockNotifyRec is a pointer to a TDockNotifyRec value.

ClientMsg is the Windows message ID.

MsgWParam is the message's WParam.

MsgLParam is the message's LParam.

Retrieved from "https://docwiki.embarcadero.com/Libraries/Tokyo/e/index.php?title=Vcl.Controls.TDockNotifyRec&oldid=199567"