
Indicates that the user has clicked the left mouse button on the control.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnClicked (nRow [as Integer] nCol [as Integer] /) ) |
Copy Code |
|---|
; React to the mouse click on the component
(defun c:MyForm_MyControl_OnClicked (nRow nCol /)
(princ "OnClicked(")
(princ nRow)
(princ ",")
(princ nCol)
(princ ")\n")
) |
OnBtnClicked, OnClicked, Clicked (BlockList), OnClicked (CheckBox), OnClicked (Option), OnDblClicked, OnRightClick, OnRightDblClick