ClassUpper
Converts text to uppercase letters; implements the UPPER text function.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Upper : StringsInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<string>StringsInFunctionUpper
Inherited Members
Constructors
Upper()
Initializes a new instance that converts text to uppercase letters.
Declaration
public Upper()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata about the function including its arguments and category.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<string>)
Evaluates the UPPER function with the provided argument and returns the text converted to uppercase.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<string> context)
Parameters
context
FunctionEvaluationContext<string>
The context.
Returns
Functions result as RadExpression.
Overrides