WebCheckBox.ValueChanged

From Xojo Documentation

Event


WebCheckBox.ValueChanged()

New in 2010r4

Supported for all project types and targets.

The CheckBox has been clicked or the value has been changed programmatically. A right-click does not trigger the Action event.

Notes

This is the equivalent of the desktop Checkbox.Action event.

Sample Code

If the the CheckBox value has been changed, either programmatically or by the user, then you may want to also cause another action to occur. In this event, you can take the action you need. This code in the ValueChanged event could be used to update a Session preference value based on the CheckBox setting:

Session.UseLargeFont = Me.Value

This code in the ValueChanged event makes a TextArea read-only based on a CheckBox setting:

TextArea1.ReadOnly = Me.Value