Indicates the action to take when the OnError handler exits.
Unit
DAScript
Syntax
TErrorAction = (eaAbort, eaFail, eaException, eaContinue);
Values
| Value | Meaning |
|
eaAbort |
Abort execution without displaying an error message. |
|
eaContinue |
Continue execution. |
|
eaException |
In Delphi 6 and higher exception is handled by the Application.HandleException method. |
|
eaFail |
Abort execution and display an error message. |