ClassRight
Extracts the last characters from text based on a specified count; implements the RIGHT text function.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Right : FunctionWithArguments
Inheritance: objectFunctionBaseFunctionWithArgumentsRight
Inherited Members
Constructors
Right()
Initializes a new instance that extracts the last characters from a text string.
Declaration
public Right()
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<object>)
Evaluates the RIGHT function with the provided arguments and returns the specified number of characters from the end of the text.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<object> context)
Parameters
context
Returns
Functions result as RadExpression.
Overrides