ObjectDCL Banner

OnDblClicked Event

Description

Indicates that the user double clicked the left mouse button on the control.

AutoLISP Syntax

Each control that throws this event has its handler that takes this generic form:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnDblClicked ()
     
)

Applies For

BlockList, BlockView, CheckBox, DwgList, DwgPreview, EditableGrid, GraphicButton, Grid (Hatch), ListBox, ListView, Option, OptionList, PictureBox, SlideView, TreeControl.

Example

CopyCode imageCopy Code
; React to the left button double click
(defun c:MyForm_MyControl_OnDblClicked ()
     (princ "OnDblClicked()\n")
)

See Also

OnClicked, OnClicked (BlockList), OnClicked (CheckBox), OnClicked (ListView), OnClicked (Option), OnRightClick, OnRightDblClick