APGen Documentation Previous Topic: APGError.Source Next Topic: APGError.Script Parent Topic: APGError Object    APGError Object
APGError.Handled
See Also:

The APGError.Handled property sets/returns whether an error handler has fully handled the error condition.

Syntax

VBScript:

oAPGError.Handled [= bHandled ]

JScript:

oAPGError.Handled [= bHandled ];

Object

oAPGError An APGError object.

Parameters

bHandled True: Do not call other error handlers in the error handler chain.
False: Call other error handlers, including the default error handler.

Notes

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.

Applies To

APGError Object