Class ErrorEventArgs
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class ErrorEventArgs : CancelEventArgs
Remarks
A ErrorEventArgs object is passed to the event handler, which allows you to determine the current exception that has occurred during the report processing and to indicate that the report operation should be canceled. To cancel the report operation, set the ErrorEventArgs.Cancel property to True.
Properties
Exception
Gets the current exception.
Declaration
public Exception Exception { get; }
Property Value
System.Exception
|