ClassRangeExpression
Expression that creates a cell range between two cell references, representing the range operator (:).
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class RangeExpression : CellReferenceBinaryOperatorExpression
Inheritance: objectRadExpressionOperatorExpressionBinaryOperatorExpression<CellReferenceRangeExpression>CellReferenceBinaryOperatorExpressionRangeExpression
Inherited Members
Constructors
RangeExpression(RadExpression, RadExpression)
Initializes a new range expression with start and end cell references.
Declaration
public RangeExpression(RadExpression left, RadExpression right)
Parameters
left
The left.
right
The right.
Properties
OperatorInfo
Gets the operator metadata for the range operator.
Declaration
public override OperatorInfo OperatorInfo { get; }
Property Value
The operator info as OperatorInfo.
Overrides
Methods
GetValueOverride(CellReferenceRangeExpression[])
Creates a continuous cell range from the two operand references or returns an error if the range is invalid.
Declaration
protected override RadExpression GetValueOverride(CellReferenceRangeExpression[] operands)
Parameters
operands
CellReferenceRangeExpression[]
The operands of type T.
Returns
Value as RadExpression.
Overrides