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
EvTableCellAttributesobjects, 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.
Examples
{
cells: [{...}, {...}, ... {...}, {...}]
}
01 May 2025