Interface CellRangeCoords

The coordinates of a cell range in a 2D space. The rowStart and colStart must be less than or equal to rowEnd and colEnd respectively. If all of the values are the same this represents a single cell.

interface CellRangeCoords {
    colEnd: number;
    colStart: number;
    rowEnd: number;
    rowStart: number;
}

Hierarchy (view full)

Properties

colEnd: number

Right column

colStart: number

Left column

rowEnd: number

Bottom row

rowStart: number

Top row