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
Initializes a new instance of the MultiplicationExpression class with the specified left and right operands.
public MultiplicationExpression(RadExpression left, RadExpression right, Workbook workbook = null)
The left.
rightRadExpressionThe right.
workbookWorkbookThe workbook.
Methods
Multiplies the two numeric operands and returns the product, or an error if the result is infinity or NaN.
protected override RadExpression GetValueOverride(double[] operands)
The operands of type T.
Returns:Value as RadExpression.
Overrides:
Properties
Gets metadata about the multiplication operator including its precedence and associativity.
public override OperatorInfo OperatorInfo { get; }
The operator info as OperatorInfo.
Overrides: