Fired when a user exits an edit field control.
Parameters
Parameter | Description |
---|---|
Control | The key of the edit field control |
CurrentValue | The edit field control's current text |
Remarks
The OnEditFieldLostFocus event fires when the user leaves an edit field control. The first parameter is the unique ID of the edit field control, and the second parameter contains the control's current text.
Example
Begin Case // When the user leaves our search control, do a search Case Event EQ "OnEditFieldLostFocus" ControlKey = Param1 SearchString = Param2 GoSub DoSearch End Case