ObjectDCL Banner

OnMouseEntered Event

Description

Indicates the mouse has moved onto 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_OnMouseEntered ()
     
)

Applies For

PictureBox, SlideView.

Example

CopyCode imageCopy Code
; React to the mouse cursor moving unto the control
(princ c:MyForm_MyControl_OnMouseEntered ()
     (princ "OnMouseEntered()\n")
)

See Also

OnMouseMovedOff