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')