RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Messages.TWMMouseWheel Record
Pascal
TWMMouseWheel = packed record
  Msg: Cardinal;
  Keys: SmallInt;
  WheelDelta: SmallInt;
  case Integer of
    0: (XPos: Smallint;
        YPos: Smallint;);
    1: (Pos: TSmallPoint;
        Result: Longint;);
end;
C++
struct TWMMouseWheel {
  unsigned Msg;
  SmallInt Keys;
  SmallInt WheelDelta;
  Smallint XPos;
  Smallint YPos;
  TSmallPoint Pos;
  Longint Result;
};

Messages

This is record Messages.TWMMouseWheel.

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