Interface

TableWalkerOptions (table)

@ckeditor/ckeditor5-table/src/tablewalker

interface

An object with configuration for TableWalker.

Filtering

Properties

  • column : number | undefined

    A column index for which this iterator will output cells. Can't be used together with startColumn and endColumn.

  • endColumn : number | undefined

    A column index at which this iterator should end. Can't be used together with column.

  • endRow : number | undefined

    A row index at which this iterator should end. Can't be used together with row.

  • includeAllSlots : boolean | undefined

    Also return values for spanned cells. Default value is false.

  • row : null | number | undefined

    A row index for which this iterator will output cells. Can't be used together with startRow and endRow.

  • startColumn : number | undefined

    A column index from which this iterator should start. Can't be used together with column. Default value is 0.

  • startRow : number | undefined

    A row index from which this iterator should start. Can't be used together with row. Default value is 0.