ClassNot
Implements the NOT function, which reverses the boolean value of its argument, returning FALSE for TRUE and TRUE for FALSE.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class Not : BooleansInFunction
Inheritance: objectFunctionBaseFunctionWithArgumentsFunctionWithSameTypeArguments<bool>BooleansInFunctionNot
Inherited Members
Constructors
Not()
Initializes a new NOT function instance for logical negation.
Declaration
public Not()
Fields
FunctionName
The name of the function.
Properties
ArgumentConversionRules
Gets the rules controlling how arguments are converted before evaluation.
Declaration
public override ArgumentConversionRules ArgumentConversionRules { get; }
Property Value
The argument conversion rules as ArgumentConversionRules.
Overrides
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 inverting the boolean argument and returning the opposite value.
Declaration
protected override RadExpression EvaluateOverride(FunctionEvaluationContext<bool> context)
Parameters
context
FunctionEvaluationContext<bool>
The context.
Returns
Functions result as RadExpression.
Overrides