
Indicates the mouse is moving over this control.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnMouseMove (nFlags [as Integer] nX [as Integer] nY [as Integer] /) ) |
AngleSlider, BlockList, BlockView, CheckBox, ComboBox, DwgList, DwgPreview, GraphicButton, Grid (Hatch), EditableGrid, HtmlControl, ImageCombo, Label, ListBox, ListView, Option, OptionList, PictureBox, SliderBar, SlideView, SpinButton, TextBox, TextButton, TreeControl.
Copy Code |
|---|
; React to the mouse cursor moving over the control
(princ c:MyForm_MyControl_OnMouseMove
(nFlags nX nY /)
(princ "OnMouseMove(")
(princ nFlags)
(princ ", ")
(princ nX)
(princ ", ")
(princ nY)
(princ ")\n")
) |