CellLocation interface

CellLocation is an interface that describes position inside the grid.

Definition

interface CellLocation {
    readonly rowId: Id;
    readonly columnId: Id;
}

Properties

Property nameTypeProperty description
rowId Id Row Id of cell location
columnId Id Column Id of cell location