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, Workbook)
Initializes a new range expression with start and end cell references.
Declaration
public RangeExpression(RadExpression left, RadExpression right, Workbook workbook = null)
Parameters
left
The left.
right
The right.
workbook
The workbook.
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
GetCellReferenceValueOverride(CellReferenceRangeExpression[])
Creates a continuous cell range from the two operand references or returns an error if the range is invalid.
Declaration
protected override RadExpression GetCellReferenceValueOverride(CellReferenceRangeExpression[] operands)
Parameters
operands
CellReferenceRangeExpression[]
The operands of type T.
Returns
Value as RadExpression.
Overrides