Event for mouse movement
Source position: MUIClass.DrawPanel.pas line 20
type TMUIMouseMove = procedure( |
Sender: TObject; |
X: Integer; |
Y: Integer; |
var EatEvent: Boolean |
) of object; |
Sender |
|
Which Object triggered the movement |
X |
|
Current x position of the Mouse, relative to the objects left position |
Y |
|
Current y position of the Mouse, relative to the objects top position |
EatEvent |
|
Return False if the Event should be sent to the underlaying objects as well. |
|