RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Controls.TCMMouseWheel Record
Pascal
TCMMouseWheel = record
  Msg: Cardinal;
  ShiftState: TShiftState;
  Unused: Byte;
  WheelDelta: SmallInt;
  case Integer of
    0: (XPos: Smallint;
        YPos: Smallint;);
    1: (Pos: TSmallPoint;
        Result: Longint;);
end;
C++
struct TCMMouseWheel {
  unsigned Msg;
  TShiftState ShiftState;
  Byte Unused;
  SmallInt WheelDelta;
  Smallint XPos;
  Smallint YPos;
  TSmallPoint Pos;
  Longint Result;
};

Controls

This is record Controls.TCMMouseWheel.

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