removeWebEventMapping

removeWebEventMapping(eventName: String): Boolean;

The removeWebEventMapping method of the Window class removes the Web event mapping specified in the eventName parameter from the receiver. For example, the following code fragment removes the lostFocus event from the textBox1 control.

textBox1.removeWebEventMapping("onLostFocus");

This method returns false if the specified event does not exist.