Report an issue
Typedef

TableWalkerValue (table)

@ckeditor/ckeditor5-table/src/tablewalker

typedef
Object

An object returned by TableWalker when traversing table cells.

Filtering

Properties

  • The current table cell. Might be empty if includeSpanned is set to true.

  • cellIndex : Number

    The index of the current cell in a parent row. When using the includeSpanned option it will indicate the next child index if #cell is empty (which indicates that the cell is spanned by another cell).

  • colspan : Number

    The colspan attribute of a cell. It is always defined even if the model attribute is not present. Not set if includeSpanned is set to true.

  • 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. It is always defined even if the model attribute is not present. Not set if includeSpanned is set to true.