CellReferenceRange
Class
Represents a rectangular range of cell references with absolute or relative addressing, used in formulas to reference contiguous cell areas.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public class CellReferenceRange
Inheritance: objectCellReferenceRange
Methods
Properties
Gets the number of columns spanned by the reference range.
C#
public int ColumnsCount { get; }
The columns count.
Gets the top-left cell reference of the range.
C#
public CellReference FromCellReference { get; }
The start cell reference.
Gets whether the reference range lies within valid worksheet boundaries.
C#
public bool IsInRange { get; }
The value indicating whether the range is within the valid boundaries.
Gets the number of rows spanned by the reference range.
C#
public int RowsCount { get; }
The rows count.
Gets the bottom-right cell reference of the range.
C#
public CellReference ToCellReference { get; }
The end cell reference.