TableWalkerValue (table)
@ckeditor/ckeditor5-table/src/tablewalker
typedef
Object
An object returned by TableWalker
when traversing table cells.
Filtering
Properties
-
The current table cell.
-
cellIndex : Number
The index of the current cell in the parent row.
-
colspan : Number
The
colspan
attribute of a cell. If the model attribute is not present, it is set to1
. For spanned table locations, it is set to1
. -
column : Number
The column index of a cell. Column index is adjusted to widths and heights of previous cells.
-
row : Number
The row index of a cell.
-
rowspan : Number
The
rowspan
attribute of a cell. If the model attribute is not present, it is set to1
. For spanned table locations, it is set to1
.