ClassChoose
Class
Implements the CHOOSE function, which uses an index number to select and return one value from a list of value arguments.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions.LookupAndReference
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
cs-api-definition
public class Choose : FunctionWithArguments
Inheritance: objectFunctionBaseFunctionWithArgumentsChoose
Inherited Members
Constructors
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets the metadata describing the CHOOSE function's category, description, and argument requirements.
Declaration
cs-api-definition
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<object>)
Evaluates the CHOOSE function by using the index argument to select and return the corresponding value from the list.
Declaration
cs-api-definition
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<object> context)
Parameters
context
Returns
Functions result as RadExpression.
Overrides