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