
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 (nIndex [as Integer] /) ) |
Copy Code |
|---|
; React to the mouse click on the component
(defun c:MyForm_MyControl_OnClicked (nIndex /)
(princ "OnClicked(")
(princ nIndex)
(princ ")\n")
) |
OnBtnClicked, OnClicked, OnClicked (CheckBox), Clicked (ListView), OnClicked (Option), OnDblClicked, OnRightClick, OnRightDblClick