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: Integer;
  MsgLParam: Integer;
end;
C++
struct TDockNotifyRec {
  unsigned ClientMsg;
  int MsgWParam;
  int MsgLParam;
};

Controls

ClientMsg is the Windows message ID.  

MsgWParam is the message's WParam.  

MsgLParam is the message's LParam. 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!