
Indicates the mouse has moved onto this control.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnMouseEntered () ) |
Copy Code |
|---|
; React to the mouse cursor moving unto the control (princ c:MyForm_MyControl_OnMouseEntered () (princ "OnMouseEntered()\n") ) |