ClassIndirect
Implements the INDIRECT function, which evaluates a text string as a cell reference and returns the reference to that cell or range.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Indirect : FunctionWithArguments
Inheritance: objectFunctionBaseFunctionWithArgumentsIndirect
Inherited Members
Constructors
Indirect()
Initializes a new INDIRECT function instance.
Declaration
public Indirect()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets the metadata describing the INDIRECT function's category, description, and argument requirements.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<object>)
Evaluates the INDIRECT function by parsing the text reference and returning a cell reference expression or error if invalid or circular.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<object> context)
Parameters
context
FunctionEvaluationContext<object>
The context.
Returns
Functions result as RadExpression.
Overrides