TableWalkerOptions

Api-interface icon interface

An object with configuration for TableWalker.

Properties

  • Chevron-right icon

    column : number | undefined

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

  • Chevron-right icon

    endColumn : number | undefined

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

  • Chevron-right icon

    endRow : number | undefined

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

  • Chevron-right icon

    includeAllSlots : boolean | undefined

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

  • Chevron-right icon

    row : null | number | undefined

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

  • Chevron-right icon

    startColumn : number | undefined

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

  • Chevron-right icon

    startRow : number | undefined

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