ClassPercentExpression
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:
cs-api-definition
public class PercentExpression : UnaryOperatorExpression
Inheritance: objectRadExpressionOperatorExpressionUnaryOperatorExpressionPercentExpression
Inherited Members
Constructors
PercentExpression(RadExpression)
Initializes a new percent expression that will divide the operand by 100.
Declaration
cs-api-definition
public PercentExpression(RadExpression operand)
Parameters
operand
The operand as RadExpression.
Properties
OperatorInfo
Gets the operator metadata for the percent operator.
Declaration
cs-api-definition
public override OperatorInfo OperatorInfo { get; }
Property Value
The operator info as OperatorInfo.
Overrides
Methods
GetValueOverride(double)
Calculates the result by dividing the operand by 100.
Declaration
cs-api-definition
protected override RadExpression GetValueOverride(double operand)
Parameters
operand
The operand as double.
Returns
Value as RadExpression.
Overrides