Class
IsNA

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:

cs-api-definition
public class IsNA : FunctionBase

Inheritance: objectFunctionBaseIsNA

Inherited Members FunctionBase.Evaluate(FunctionEvaluationContext<RadExpression>)FunctionBase.IsArgumentNumberValid(int)FunctionBase.ArgumentConversionRules

Constructors

IsNA()

Initializes a new ISNA function instance for testing whether values are the #N/A error.

Declaration

cs-api-definition
public IsNA()

Fields

FunctionName

The name of the function.

Declaration

cs-api-definition
public static readonly string FunctionName

Field Value

string

Properties

FunctionInfo

Gets metadata describing the function's category, parameters, and localization keys.

Declaration

cs-api-definition
public override FunctionInfo FunctionInfo { get; }

Property Value

FunctionInfo

The function info as FunctionInfo.

Overrides FunctionBase.FunctionInfo

Name

Gets the function name identifier used in formulas.

Declaration

cs-api-definition
public override string Name { get; }

Property Value

string

The name as String.

Overrides FunctionBase.Name

Methods

EvaluateOverride(FunctionEvaluationContext<RadExpression>)

Evaluates the function and returns TRUE if the argument is specifically the #N/A error, FALSE otherwise.

Declaration

cs-api-definition
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)

Parameters

context

FunctionEvaluationContext<RadExpression>

The context.

Returns

RadExpression

Function result as RadExpression.

Overrides FunctionBase.EvaluateOverride(FunctionEvaluationContext<RadExpression>)