
Indicates the control is about to display altered text.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnUpdate (sText [as String] /) ) |
ComboBox, ImageCombo, TextBox.
Copy Code |
|---|
; React to the text change
(princ c:MyForm_MyControl_OnUpdate
(sText /)
(princ "OnUpdate(")
(princ sText)
(princ ")\n")
) |