Click or drag to resize

HyperLabel.Error Method (Error)

X#
Provide a method for handling error conditions raised during hyperlabel processing.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOSystemClasses (in XSharp.VOSystemClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Error(
	oError AS Error
) AS VOID
Request Example View Source

Parameters

oError
Type: Error
An Error object describing the error condition.
Remarks
Tip Tip
This is an event handler and is automatically called by other methods; the developer does not normally need to call the HyperLabel:Error() method, but might want to replace or amend it.
The standard Error() handling method fills in some more information about the errors and about the HyperLabel object that originates the error, sets the status value for the object, and passes the problem to its client, if there is one, in its standard Error() handling method. If there is no client who wants to deal with the problem, the method passes it up the call stack by issuing a BREAK with the same Error object.
Tip Tip
If an error comes in while one is being handled, the Error() method immediately breaks.
See Also