SheetXL - v0.3.20
    Preparing search index...

    Interface SelectionCoords

    Represents a selection of ranges with an active range and an active cell.

    interface SelectionCoords {
        cell: Readonly<CellCoords>;
        rangeIndex?: number;
        ranges?: readonly RangeCoords[];
    }
    Index

    Properties

    cell: Readonly<CellCoords>

    The cell coordinates that will receive actions that operate on a single cell.

    rangeIndex?: number

    The current range if any ranges are selected.

    'ranges.length - 1'
    

    If the rangeIndex is outside the ranges bounds this will be the defaultValue.

    ranges?: readonly RangeCoords[]

    A list of cell ranges that are currently selected.

    If this is missing it will be assumed to have a ranges of length 1 that matches the CellCoords.