SheetXL - v0.3.20
    Preparing search index...

    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 Coords {
        colEnd: number;
        colStart: number;
        rowEnd: number;
        rowStart: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    colEnd: number

    Right column

    colStart: number

    Left column

    rowEnd: number

    Bottom row

    rowStart: number

    Top row