ClassSubtractionExpression
Expression that subtracts the right operand from the left operand, representing the subtraction operator (-).
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class SubtractionExpression : NumberBinaryOperatorExpression
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<double>NumberBinaryOperatorExpressionSubtractionExpression
Inherited Members
Constructors
SubtractionExpression(RadExpression, RadExpression)
Initializes a new subtraction expression with left and right operands.
Declaration
public SubtractionExpression(RadExpression left, RadExpression right)
Parameters
left
The left.
right
The right.
Properties
OperatorInfo
Gets the operator metadata for the subtraction operator.
Declaration
public override OperatorInfo OperatorInfo { get; }
Property Value
The operator info as OperatorInfo.
Overrides
Methods
GetValueOverride(double[])
Calculates the difference between the two operands.
Declaration
protected override RadExpression GetValueOverride(double[] operands)
Parameters
operands
double[]
The operands of type T.
Returns
Value as RadExpression.
Overrides