|
APGError Object |
|
See Also: |
The APGError.Handled property sets/returns whether an error handler has fully handled the error condition.
VBScript:
JScript:
| oAPGError | An APGError object. |
| bHandled | True: Do not call other error handlers in the error handler chain. False: Call other error handlers, including the default error handler. |
The APGError.Handled property is used to break the error handler chain, thus preventing later handlers in the chain from being called. If an error handler sets APGError.Handled to True, then later handlers (including the default error handler) will not be called.
For an example, see Using Script.OnError.