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, Workbook)
Initializes a new subtraction expression with left and right operands.
Declaration
public SubtractionExpression(RadExpression left, RadExpression right, Workbook workbook = null)
Parameters
left
The left.
right
The right.
workbook
The workbook.
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