Interface SheetCellCoords

The coordinates of a cell in a 2D space.

interface SheetCellCoords {
    colIndex: number;
    rowIndex: number;
    sheetName: string;
}

Hierarchy (view full)

Properties

colIndex: number

The column index of the cell.

rowIndex: number

The row index of the cell.

sheetName: string