ObjectDCL Banner

OnMouseMove Event

Description

Indicates the mouse has moved off this control.

AutoLISP Syntax

Each control that throws this event has its handler that takes this generic form:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnMouseMovedOff ()
     
)

Applies For

PictureBox, SlideView.

Example

CopyCode imageCopy Code
; React to the mouse cursor moving off the control
(princ c:MyForm_MyControl_OnMouseMovedOff ()
     (princ "OnMouseMove()\n")
)

See Also

OnMouseEntered