ClassIsRef
Implements the ISREF function, which tests whether a value is a cell reference and returns TRUE for references or FALSE otherwise.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IsRef : FunctionBase
Inheritance: objectFunctionBaseIsRef
Inherited Members
Constructors
IsRef()
Initializes a new ISREF function instance for testing whether values are cell references.
Declaration
public IsRef()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata describing the function's category, description, and argument structure.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<RadExpression>)
Evaluates the function by checking if the argument is a cell reference expression and returns TRUE or FALSE.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)
Parameters
context
FunctionEvaluationContext<RadExpression>
The context.
Returns
Function result as RadExpression.
Overrides