CellLocation
is an interface that describes position inside the grid.
Definition
interface CellLocation {
readonly rowId: Id;
readonly columnId: Id;
}
Properties
Property name | Type | Property description |
---|---|---|
rowId | Id | Row Id of cell location |
columnId | Id | Column Id of cell location |