ClassIsFormula
Tests whether a cell reference contains a formula and returns TRUE for formula cells, FALSE otherwise.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IsFormula : FunctionWithArguments
Inheritance: objectFunctionBaseFunctionWithArgumentsIsFormula
Inherited Members
Constructors
IsFormula()
Initializes a new ISFORMULA function instance for testing whether cell references contain formulas.
Declaration
public IsFormula()
Fields
FunctionName
The name of the function.
Properties
FunctionInfo
Gets metadata describing the function's category, parameters, and localization keys.
Declaration
public override FunctionInfo FunctionInfo { get; }
Property Value
The function info as FunctionInfo.
Overrides
Methods
EvaluateOverride(FunctionEvaluationContext<object>)
Evaluates the function by inspecting the cell reference and returns TRUE if it contains a formula, FALSE otherwise.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<object> context)
Parameters
context
Returns
Functions result as RadExpression.
Overrides