RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Messages.TWMSysCommand Record
Pascal
TWMSysCommand = packed record
  Msg: Cardinal;
  CmdType: Longint;
  case Longint of
    SC_HOTKEY: (ActivateWnd: HWND;);
    SC_KEYMENU: (Key: Word;);
    SC_VSCROLL: (XPos: Smallint;
                 YPos: Smallint;
                 Result: Longint;);
end;
C++
struct TWMSysCommand {
  unsigned Msg;
  Longint CmdType;
  HWND ActivateWnd;
  Word Key;
  Smallint XPos;
  Smallint YPos;
  Longint Result;
};

Messages

This is record Messages.TWMSysCommand.

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