Interface FixableCellCoords

CellCoords with additional flags to indicate if the cell is fixed for a given point.

interface FixableCellCoords {
    colIndex: number;
    fixedCol?: boolean;
    fixedRow?: boolean;
    rowIndex: number;
}

Hierarchy (view full)

Properties

colIndex: number

The column index of the cell.

fixedCol?: boolean

If true, the column is fixed.

fixedRow?: boolean

If true, the row is fixed.

rowIndex: number

The row index of the cell.