Event for Mousewheel movement
Source position: MUIClass.DrawPanel.pas line 19
type TMUIMouseWheel = procedure( |
Sender: TObject; |
ScrollUp: Boolean; |
var EatEvent: Boolean |
) of object; |
Sender |
|
Which object got this wheel movement |
ScrollUp |
|
True if the wheel is scrolled up, false = down |
EatEvent |
|
Return False if the Event should be sent to the underlaying objects as well. |
|