EvTableCellIndex Type Alias
EvTableCellIndex is a TS type alias for an array of two numbers that define the row and column indices of a cell in a table: [row, column].
type EvTableCellIndex: number[row, column];
Discussion
The indices begin with 0. The first cell is at the top left of the table with the [0, 0] indices. The row indices grow down the table, and the column indices grow to the right.

18 April 2025