EvTableCellAttributes Interface
The EvTableCellAttributes TS interface specifies a blueprint of a JS object that defines a table cell.
Properties
An EvTableCellAttributes object has the following properties:
background: EvFill;An
EvFillobject, the background fill of the given cell.index: EvTableCellIndexAn
EvTableCellIndexobject, an array of the row and column indices of the given cell in the table.text: string;A string, the text content of the given cell.
Examples
TS
JS
- { background: { data: { color: "#B3282E" }, id: 42, type: EvFillType.Color }, index: [1, 0], text: "Hello, World!" }
- { background: { data: { color: "#B3282E" }, id: 42, type: "color" }, index: [1, 0], text: "Hello, World!" }
10 April 2025