Class MultiplicationExpression
Multiplies two numeric operands and returns the product; implements the multiplication (*) arithmetic operator.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class MultiplicationExpression : NumberBinaryOperatorExpression, IPrecalculatedExpressionThreeNode
Constructors
MultiplicationExpression(RadExpression, RadExpression)
Initializes a new instance of the MultiplicationExpression class with the specified left and right operands.
Declaration
public MultiplicationExpression(RadExpression left, RadExpression right)
Parameters
|
RadExpression
left
The left. |
|
RadExpression
right
The right. |
Properties
OperatorInfo
Gets metadata about the multiplication operator including its precedence and associativity.
Declaration
public override OperatorInfo OperatorInfo { get; }
Property Value
|
OperatorInfo
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
|
System.Double[]
operands
The operands of type T. |
Returns
|
RadExpression
Value as RadExpression. |