New to Telerik Document ProcessingStart a free 30-day trial

Multiplies two numeric operands and returns the product; implements the multiplication (*) arithmetic operator.

Definition

Constructors

Initializes a new instance of the MultiplicationExpression class with the specified left and right operands.

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

The left.

rightRadExpression

The right.

workbookWorkbook

The workbook.

Methods

Multiplies the two numeric operands and returns the product, or an error if the result is infinity or NaN.

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 metadata about the multiplication operator including its precedence and associativity.

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

The operator info as OperatorInfo.

Overrides: OperatorExpression.OperatorInfo