
Indicates the user has just clicked on the column header button.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnColumnClick (nColumn /) ) |
Copy Code |
|---|
; React to the column header being clicked (defun c:MyForm_MyControl_OnColumnClick (nColumn /) (princ "OnColumnClick") (princ nColumn) (princ "\n") ) |