Class UnaryPlusExpression
Expression that preserves the sign of a numeric value, representing the unary plus operator (+).
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class UnaryPlusExpression : UnaryOperatorExpression, IPrecalculatedExpressionThreeNode
Constructors
UnaryPlusExpression(RadExpression)
Initializes a new unary plus expression that will preserve the operand's sign.
Declaration
public UnaryPlusExpression(RadExpression operand)
Parameters
|
RadExpression
operand
The operand. |
Properties
OperatorInfo
Gets the operator metadata for the unary plus operator.
Declaration
public override OperatorInfo OperatorInfo { get; }
Property Value
|
OperatorInfo
The operator info as OperatorInfo. |
Overrides
Methods
GetValueOverride(Double)
Returns the operand unchanged, effectively preserving its sign.
Declaration
protected override RadExpression GetValueOverride(double operand)
Parameters
|
System.Double
operand
The operand as double. |
Returns
|
RadExpression
Value as RadExpression. |