[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
TCMMouseWheel - record holding data about the Mouse Wheel
Source position: controls.pp line 84
type TCMMouseWheel = record |
||
MSg: Cardinal; |
|
|
ShiftState: TShiftState; |
|
|
Unused: Byte; |
|
|
WheelData: SmallInt; |
|
|
case Integer of |
||
0: ( |
||
XPos: SmallInt; |
|
|
YPos: SmallInt; |
|
|
); |
||
1: ( |
||
Pos: TSmallPoint; |
|
|
Result: LRESULT; |
|
|
); |
||
end; |
Details held include: the Message associated with the wheel; the shift state (ie whether Shift, Alt, Control etc keys have been pressed); wheel data which can either be a position (X, Y coordinates) or a position plus an integer result.
lazarus-ccr.sourceforge.net |