ClassMid
Class
Extracts a substring from text at a specified position and length; implements the MID text function.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
cs-api-definition
public class Mid : FunctionWithArguments
Inheritance: objectFunctionBaseFunctionWithArgumentsMid
Inherited Members
Constructors
Mid()
Initializes a new instance that extracts characters from the middle of a text string.
Declaration
cs-api-definition
public Mid()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata about the function including its arguments and category.
Declaration
cs-api-definition
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<object>)
Evaluates the MID function with the provided arguments and returns the extracted substring.
Declaration
cs-api-definition
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<object> context)
Parameters
context
Returns
Functions result as RadExpression.
Overrides