Class IsNumber
Tests whether a value is a number and returns TRUE for numeric values, FALSE otherwise.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class IsNumber : FunctionBase
Constructors
IsNumber()
Initializes a new ISNUMBER function instance for testing whether values are numeric.
Declaration
public IsNumber()
Fields
FunctionName
The name of the function.
Declaration
public static readonly string FunctionName
Field Value
|
System.String
|
Properties
FunctionInfo
Gets metadata describing the function's category, parameters, and localization keys.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
|
FunctionInfo
The function info as FunctionInfo. |
Overrides
Name
Gets the function name identifier used in formulas.
Declaration
public override string Name { get; }
Property Value
|
System.String
The name as String. |
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<RadExpression>)
Evaluates the function and returns TRUE if the argument is a number expression, FALSE otherwise.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)
Parameters
|
FunctionEvaluationContext<RadExpression>
context
The context. |
Returns
|
RadExpression
Function result as RadExpression. |