evCreate API 5.7 Help

EvTableAttributes Interface

The EvTableAttributes TS interface defines a blueprint of a JS object that specifies the cells included in a table item.

Properties

An EvTableAttributes object has the following properties:

cells: EvTableCellAttributes[];

An array of EvTableCellAttributes objects, all the cells of the given table item in row-major order: when it comes to the last cell in a row, it continues from the first cell in the next row.

An array of the cells of a given table item in row-major order.

Examples

{ cells: [{...}, {...}, ... {...}, {...}] }
01 May 2025