
Indicates the mouse has moved off this control.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnMouseMovedOff () ) |
Copy Code |
|---|
; React to the mouse cursor moving off the control (princ c:MyForm_MyControl_OnMouseMovedOff () (princ "OnMouseMove()\n") ) |