Class
MultiplicationExpression

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:

cs-api-definition
public class MultiplicationExpression : NumberBinaryOperatorExpression

Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<double>NumberBinaryOperatorExpressionMultiplicationExpression

Inherited Members NumberBinaryOperatorExpression.OperandsTypeBinaryOperatorExpression<double>.GetValueOverride()BinaryOperatorExpression<double>.ArgumentConversionRulesBinaryOperatorExpression<double>.LeftBinaryOperatorExpression<double>.RightRadExpression.GetValue()RadExpression.GetValueAsString()RadExpression.GetValueAsString(CultureInfo)RadExpression.ToString()RadExpression.ToString(CultureInfo)RadExpression.InvalidateValue()RadExpression.AttachToChildrenEvent(IEnumerable<RadExpression>)RadExpression.AttachToChildEvent(RadExpression)RadExpression.OnValueInvalidated()RadExpression.ValueInvalidated

Constructors

MultiplicationExpression(RadExpression, RadExpression)

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

Declaration

cs-api-definition
public MultiplicationExpression(RadExpression left, RadExpression right)

Parameters

left

RadExpression

The left.

right

RadExpression

The right.

Properties

OperatorInfo

Gets metadata about the multiplication operator including its precedence and associativity.

Declaration

cs-api-definition
public override OperatorInfo OperatorInfo { get; }

Property Value

OperatorInfo

The operator info as OperatorInfo.

Overrides OperatorExpression.OperatorInfo

Methods

GetValueOverride(double[])

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

Declaration

cs-api-definition
protected override RadExpression GetValueOverride(double[] operands)

Parameters

operands

double[]

The operands of type T.

Returns

RadExpression

Value as RadExpression.

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