ObjectDCL Banner

OnEditChanged Event

Description

Indicates that the user changed the document of the TextBox.

Parameters

sText
String identifying the new input text.

AutoLISP Syntax

The event handler takes this generic form for most combobox types:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnEditChanged 
                 (sText [as String] /)
     
)

Applies For

ComboBox, ImageCombo, TextBox.

Example

CopyCode imageCopy Code
; React to the editing
(defun c:MyForm_MyControl_OnEditChanged
                 (sText /)
     (princ "OnEditChanged(")
     (princ sText)
     (princ ")\n")
)