ClassIsNA
Tests whether a value is the #N/A error and returns TRUE for #N/A errors, FALSE otherwise.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IsNA : FunctionBase
Inheritance: objectFunctionBaseIsNA
Inherited Members
Constructors
IsNA()
Initializes a new ISNA function instance for testing whether values are the #N/A error.
Declaration
public IsNA()
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 specifically the #N/A error, FALSE otherwise.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)
Parameters
context
FunctionEvaluationContext<RadExpression>
The context.
Returns
Function result as RadExpression.
Overrides