ClassIsError
Tests whether a value is any error and returns TRUE for any error value including #N/A, FALSE otherwise.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IsError : FunctionBase
Inheritance: objectFunctionBaseIsError
Inherited Members
Constructors
IsError()
Initializes a new ISERROR function instance for testing whether values are any error type.
Declaration
public IsError()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata describing the function's category, parameters, and localization keys.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<RadExpression>)
Evaluates the function and returns TRUE if the argument is any error expression, FALSE otherwise.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)
Parameters
context
FunctionEvaluationContext<RadExpression>
The context.
Returns
Function result as RadExpression.
Overrides