DivisionExpression
Binary expression that divides the left operand by the right operand, returning an error if division by zero occurs.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class DivisionExpression : NumberBinaryOperatorExpression
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<double>NumberBinaryOperatorExpressionDivisionExpression...
Inherited Members
Constructors
Initializes a new instance of the DivisionExpression class with the specified dividend and divisor expressions.
public DivisionExpression(RadExpression left, RadExpression right, Workbook workbook = null)
The left.
rightRadExpressionThe right.
workbookWorkbookThe workbook.
Methods
Computes the division result from numeric operands, returning #DIV/0! error if the divisor is zero.
protected override RadExpression GetValueOverride(double[] operands)
The operands of type T.
Returns:Value as RadExpression.
Overrides:
Properties
The operator metadata for the division operator, including precedence and associativity.
public override OperatorInfo OperatorInfo { get; }
The operator info as OperatorInfo.
Overrides: