ClassIsBlank
Tests whether a cell reference is empty and returns TRUE for blank cells, FALSE otherwise.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class IsBlank : FunctionBase
Inheritance: objectFunctionBaseIsBlank
Inherited Members
Constructors
IsBlank()
Initializes a new ISBLANK function instance for testing whether cells are empty.
Declaration
public IsBlank()
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<RadExpression>)
Evaluates the function and returns TRUE if the argument is an empty cell or empty expression, FALSE otherwise.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<RadExpression> context)
Parameters
context
FunctionEvaluationContext<RadExpression>
The context.
Returns
Function result as RadExpression.
Overrides