Gets or sets the script that is executed when an error occurs in a script attached to the current document.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
[XmlAttributeAttribute("ErrorScript")]
public string ErrorScript { get; set; }
Visual Basic
<XmlAttributeAttribute("ErrorScript")> _
Public Property ErrorScript As String
	Get
	Set

Remarks

The ErrorScript event is also fired at the same time as this script is executed.

The difference between events and scripts is that event handlers belong to the application code, while scripts belong to the document. Thus it is recommended that event handlers be used to perform tasks that implement the overall application logic but do not depend on the specific document being processed.

On the other hand, scripts should be used to perform tasks directly related to the document itself. Scripts attached to a document are executed regardless of the current application (e.g. when the document is regenerated after being loaded from file by a different program). (For example, a document might contain a script that changes the value of a field in that document when an error occurs.)

See Also