evCreate API 5.7 Help

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: EvTableCellIndex

An EvTableCellIndex object, 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 at property. 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 the at property.

Examples

{ at: [0, 2], count: 4 }
An array of the cells of a given range in row-major order.
15 April 2025