
Indicates a mouse button was double clicked over this control.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnMouseDblClick (nButton [as Integer] nFlags [as Integer] nX [as Integer] nY [as Integer] /) ) |
BlockView, DwgPreview, Grid (Hatch), PictureBox, SlideView.
Copy Code |
|---|
; React to the mouse button being double clicked
(princ c:MyForm_MyControl_OnMouseDblClick
(nButton nFlags nX nY /)
(princ "OnMouseDblClick(")
(princ nButton)
(princ ", ")
(princ nFlags)
(princ ", ")
(princ nX)
(princ ", ")
(princ nY)
(princ ")\n")
) |