EvTableCellRange Interface
The EvTableCellRange TS interface defines a blueprint of a JS object that specifies a continuous range of cells in a table item.
Properties
An EvTableCellRange object has the following properties:
at: EvTableCellIndexAn
EvTableCellIndexobject, an array of the row and column indices of the first cell in the given range of cells.optional count: number;A number, the number of cells in the given range of cells, including the first cell specified in the
atproperty. The range goes in the row-major order: when it comes to the last cell in a row, it continues from the first cell in the next row.A negative number indicates the last cell (the end) of the table.
The default value is
1, e.i., the cell given in theatproperty.
Examples
{
at: [0, 2],
count: 4
}

15 April 2025