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