Class
ConstantExpression

Abstract base for expressions with constant values that do not require recalculation, serving as foundation for literals in formulas.

Definition

Constructors

ConstantExpression()

Initializes a new instance of the ConstantExpression class.

Declaration

cs-api-definition
protected ConstantExpression()

Methods

GetValueOverride()

Returns the expression value, which for constant expressions is always the expression itself without recalculation.

Declaration

cs-api-definition
protected override RadExpression GetValueOverride()

Returns

RadExpression

The value as RadExpression.

Overrides RadExpression.GetValueOverride()

IsRegistered()

Determines whether the current instance is registered in the calculation map of the workbook.

Declaration

cs-api-definition
protected override bool IsRegistered()

Returns

bool

Always returns true.

Overrides RadExpression.IsRegistered()

Extension Methods