
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 (nValue [as Integer] /) ) |
The value is actually one of the MFC CButton::GetCheck() method's return values.
Copy Code |
|---|
; React to the mouse click on the component
(defun c:MyForm_MyControl_OnClicked (nValue /)
(princ "OnClicked(")
(princ nValue)
(princ ")\n")
) |
OnBtnClicked, OnClicked, Clicked (BlockList), OnClicked (CheckBox), OnClicked (ListView), OnDblClicked, OnRightClick, OnRightDblClick