Abstract base for strongly-typed constant expressions that hold a value of type T, enabling type-safe literal values in formulas.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Type Parameters:
T
The type T of the expression value.
Syntax:
C#
public abstract class ConstantExpression<T> : ConstantExpression
Inheritance: objectRadExpressionConstantExpressionConstantExpression<T>
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the ConstantExpression<T> class with the specified typed value.
C#
protected ConstantExpression(T value)
The value.
Properties
The typed constant value stored in this expression.
C#
public T Value { get; }
The value.