ClassMultiplicationExpression
Multiplies two numeric operands and returns the product; implements the multiplication (*) arithmetic operator.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class MultiplicationExpression : NumberBinaryOperatorExpression
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<double>NumberBinaryOperatorExpressionMultiplicationExpression
Inherited Members
Constructors
MultiplicationExpression(RadExpression, RadExpression, Workbook)
Initializes a new instance of the MultiplicationExpression class with the specified left and right operands.
Declaration
public MultiplicationExpression(RadExpression left, RadExpression right, Workbook workbook = null)
Parameters
left
The left.
right
The right.
workbook
The workbook.
Properties
OperatorInfo
Gets metadata about the multiplication operator including its precedence and associativity.
Declaration
public override OperatorInfo OperatorInfo { get; }
Property Value
The operator info as OperatorInfo.
Overrides
Methods
GetValueOverride(double[])
Multiplies the two numeric operands and returns the product, or an error if the result is infinity or NaN.
Declaration
protected override RadExpression GetValueOverride(double[] operands)
Parameters
operands
double[]
The operands of type T.
Returns
Value as RadExpression.
Overrides