New to Telerik Document ProcessingStart a free 30-day trial

Expression that subtracts the right operand from the left operand, representing the subtraction operator (-).

Definition

Constructors

Initializes a new subtraction expression with left and right operands.

C#
public SubtractionExpression(RadExpression left, RadExpression right, Workbook workbook = null)
Parameters:leftRadExpression

The left.

rightRadExpression

The right.

workbookWorkbook

The workbook.

Methods

Calculates the difference between the two operands.

C#
protected override RadExpression GetValueOverride(double[] operands)
Parameters:operandsdouble[]

The operands of type T.

Returns:

RadExpression

Value as RadExpression.

Overrides: BinaryOperatorExpression<double>.GetValueOverride(double[])

Properties

Gets the operator metadata for the subtraction operator.

C#
public override OperatorInfo OperatorInfo { get; }
Property Value:

The operator info as OperatorInfo.

Overrides: OperatorExpression.OperatorInfo