ObjectDCL Banner

OnMaxText Event

Description

Indicates the text insertion is truncated.

AutoLISP Syntax

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

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnMaxText ()
     
)

Applies For

TextBox.

Example

CopyCode imageCopy Code
; React to the input that reached is maximum capacity
(defun c:MyForm_MyControl_OnMaxText ()
     (princ "OnMaxText()\n")
)

See Also

LimitText