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