ClassMatch
Implements the MATCH function, which searches for a value in a range and returns its relative position within that range.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions.LookupAndReference
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Match : FunctionWithArguments
Inheritance: objectFunctionBaseFunctionWithArgumentsMatch
Inherited Members
Constructors
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets the metadata describing the MATCH 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 MATCH function by searching the lookup array for the specified value and returning its 1-based position.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<object> context)
Parameters
context
FunctionEvaluationContext<object>
The context.
Returns
Function result as RadExpression.
Overrides