RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Controls.TDockNotifyRec Record

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

Pascal
TDockNotifyRec = record
  ClientMsg: Cardinal;
  MsgWParam: WPARAM;
  MsgLParam: LPARAM;
end;
C++
struct TDockNotifyRec {
  unsigned ClientMsg;
  WPARAM MsgWParam;
  LPARAM MsgLParam;
};

ClientMsg is the Windows message ID.  

MsgWParam is the message's WParam.  

MsgLParam is the message's LParam. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!