RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Messages.TWMParentNotify Record
Pascal
TWMParentNotify = packed record
  Msg: Cardinal;
  Event: Word;
  case Word of
    0: (Value1: Word;
        Value2: Longint;
        Result: Longint;);
    WM_DESTROY: (ChildID: Word;
                 ChildWnd: HWnd;);
    WM_RBUTTONDOWN: (Value: Word;
                     XPos: Smallint;
                     YPos: Smallint;);
end;
C++
struct TWMParentNotify {
  unsigned Msg;
  Word Event;
  Word ChildID;
  HWnd ChildWnd;
  Word Value;
  Smallint XPos;
  Smallint YPos;
  Word Value1;
  Longint Value2;
  Longint Result;
};

Messages

This is record Messages.TWMParentNotify.

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