
Indicates that the user changed the document of the TextBox.
The event handler takes this generic form for most combobox types:
Copy Code |
|---|
(defun c:FormName_ControlName_OnEditChanged (sText [as String] /) ) |
ComboBox, ImageCombo, TextBox.
Copy Code |
|---|
; React to the editing
(defun c:MyForm_MyControl_OnEditChanged
(sText /)
(princ "OnEditChanged(")
(princ sText)
(princ ")\n")
) |