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