Abstract base for binary operators that operate on numeric operands and return numeric results.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public abstract class NumberBinaryOperatorExpression : BinaryOperatorExpression<double>
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<double>NumberBinaryOperatorExpression
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the NumberBinaryOperatorExpression class with the specified left and right operands.
C#
protected NumberBinaryOperatorExpression(RadExpression left, RadExpression right, Workbook workbook = null)
The left.
rightRadExpressionThe right.
workbookWorkbookThe workbook.
Properties
Gets the operand type required by this operator, which is numeric.
C#
public override ArgumentType OperandsType { get; }
The type of the operands as ArgumentType.
Overrides: