
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 (nValue [as Integer] nDelta [as Integer] /) ) |
Copy Code |
|---|
; React to the change
(defun c:MyForm_MyControl_OnChanged
(nSelIndex /)
(princ "OnChanged(")
(princ nValue)
(princ ",")
(princ nDelta)
(princ ")\n")
) |