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