getWebEventMappings
getWebEventMappings(): HugeStringArray;
The getWebEventMappings method of the Window class returns all Web event mappings for the receiver.
The method in the following example returns a list of all Web event mappings for the textBox1 control.
vars strArray : HugeStringArray; begin strArray := textBox1.getWebEventMappings; ... // do some processing here epilog delete strArray; end;
Each entry in the returned array has the following format.
<event-name>=<function-name>
The following is an example of an entry in a returned array of Web event mappings.
lostFocus=processLostFocus(this, 'lostFocus')