Class ErrorExpression
Constant expression representing a formula error with an error value, message, and optional exception. Use this to propagate errors through formula calculations.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ErrorExpression : ConstantExpression<string>, IPrecalculatedExpressionThreeNode
Properties
Exception
The underlying exception that caused this error, if any.
Declaration
public Exception Exception { get; }
Property Value
|
System.Exception
The exception. |
Message
The human-readable error message describing what went wrong.
Declaration
public string Message { get; }
Property Value
|
System.String
The message. |