Class PercentExpression
Expression that divides a numeric value by 100, representing the percent operator (%).
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class PercentExpression : UnaryOperatorExpression, IPrecalculatedExpressionThreeNode
Constructors
PercentExpression(RadExpression)
Initializes a new percent expression that will divide the operand by 100.
Declaration
public PercentExpression(RadExpression operand)
Parameters
|
RadExpression
operand
The operand as RadExpression. |
Properties
OperatorInfo
Gets the operator metadata for the percent operator.
Declaration
public override OperatorInfo OperatorInfo { get; }
Property Value
|
OperatorInfo
The operator info as OperatorInfo. |
Overrides
Methods
GetValueOverride(Double)
Calculates the result by dividing the operand by 100.
Declaration
protected override RadExpression GetValueOverride(double operand)
Parameters
|
System.Double
operand
The operand as double. |
Returns
|
RadExpression
Value as RadExpression. |