Interface OffsetCoords

The coordinates of a cell in a 2D space.

interface OffsetCoords {
    colIndex: number;
    rowIndex: number;
    x?: number;
    y?: number;
}

Hierarchy (view full)

Properties

Properties

colIndex: number

The column index of the cell.

rowIndex: number

The row index of the cell.

x?: number
y?: number