ClassNumberBinaryOperatorExpression
Class
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:
cs-api-definition
public abstract class NumberBinaryOperatorExpression : BinaryOperatorExpression<double>
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<double>NumberBinaryOperatorExpression
Derived Classes:
Inherited Members
Constructors
NumberBinaryOperatorExpression(RadExpression, RadExpression)
Initializes a new instance of the NumberBinaryOperatorExpression class with the specified left and right operands.
Declaration
cs-api-definition
protected NumberBinaryOperatorExpression(RadExpression left, RadExpression right)
Parameters
left
The left.
right
The right.
Properties
OperandsType
Gets the operand type required by this operator, which is numeric.
Declaration
cs-api-definition
public override ArgumentType OperandsType { get; }
Property Value
The type of the operands as ArgumentType.
Overrides