WebControl.PropertyChanged

From Xojo Documentation

Event


WebControl.PropertyChanged(PropName as String, PropValue as Variant)

New in 2011r2

Supported for all project types and targets.

The value of the property PropName has changed to PropValue.

Example

The PropertyChanged event handler of a CheckBox is:

MsgBox(Propname+" has fired. The new value is " + PropValue.ToString)

When the checkbox is clicked, this event fires and reports that the Value property has chaned to the new value (True or False).