
Indicates that the value of the control has changed.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnChanged (nSelIndex [as Integer] /) ) |
Copy Code |
|---|
; React to the selection change
(defun c:MyForm_MyControl_OnChanged
(nSelIndex /)
(princ "OnChanged(")
(princ nSelIndex)
(princ ")\n")
) |