ClassAnd
Implements the AND function, which evaluates multiple conditions and returns TRUE only if all arguments are TRUE.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class And : BooleansInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<bool>BooleansInFunctionAnd
Inherited Members
Constructors
And()
Initializes a new AND function instance for performing logical conjunction on multiple boolean conditions.
Declaration
public And()
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<bool>)
Evaluates the function by testing all boolean arguments and returns FALSE if any argument is FALSE, otherwise TRUE.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<bool> context)
Parameters
context
FunctionEvaluationContext<bool>
The context.
Returns
Functions result as RadExpression.
Overrides