ClassIsText
Implements the ISTEXT function, which tests whether a value is text and returns TRUE for text values or FALSE otherwise.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IsText : FunctionBase
Inheritance: objectFunctionBaseIsText
Inherited Members
Constructors
IsText()
Initializes a new ISTEXT function instance for testing whether values are text.
Declaration
public IsText()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata describing the function's category, description, and argument structure.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<RadExpression>)
Evaluates the function by checking if the argument is a string expression and returns TRUE or FALSE.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)
Parameters
context
FunctionEvaluationContext<RadExpression>
The context.
Returns
Function result as RadExpression.
Overrides