WebTextControl.ValueChanged

From Xojo Documentation

Event


WebTextControl.ValueChanged()

New in 2020r1

Supported for all project types and targets.

The text in the control has changed. The event fires only when the user has stopped typing for a short period.

Notes

Currently in both Google Chrome and Microsoft Edge, the autofill feature of these browsers does not trigger this event.

This event handler is not called for WebLabel since its Value property cannot be modified by the user.

Example

Display the text typed by the user:

MessageBox(Me.Value)