CellLocation interface
CellLocation
is an interface that describes focus position inside the grid.
Definition
interface CellLocation {
readonly rowId: Id;
readonly columnId: Id;
readonly color?: string;
}
CellLocation
is an interface that describes focus position inside the grid.
interface CellLocation {
readonly rowId: Id;
readonly columnId: Id;
readonly color?: string;
}