table/utils/structure
@ckeditor/ckeditor5-table/src/utils/structure
Filtering
Functions
-
adjustLastColumnIndex( table, dimensions = { dimensions.firstRow, dimensions.firstColumn, dimensions.lastRow, dimensions.lastColumn } ) → Number
Returns adjusted last column index if selection covers part of a column with empty slots (spanned by other cells). The
dimensions.lastColumn
is equal to last column index but selection might be bigger.This happens only on rectangular selection so we analyze a case like this:
Parameters
table : Element
dimensions : Object
-
Properties
dimensions.firstRow : Number
dimensions.firstColumn : Number
dimensions.lastRow : Number
dimensions.lastColumn : Number
Returns
Number
Adjusted last column index.
-
adjustLastRowIndex( table, dimensions = { dimensions.firstRow, dimensions.firstColumn, dimensions.lastRow, dimensions.lastColumn } ) → Number
Returns adjusted last row index if selection covers part of a row with empty slots (spanned by other cells). The
dimensions.lastRow
is equal to last row index but selection might be bigger.This happens only on rectangular selection so we analyze a case like this:
Parameters
table : Element
dimensions : Object
-
Properties
dimensions.firstRow : Number
dimensions.firstColumn : Number
dimensions.lastRow : Number
dimensions.lastColumn : Number
Returns
Number
Adjusted last row index.
-
cropTableToDimensions( sourceTable, cropDimensions = { cropDimensions.startRow, cropDimensions.startColumn, cropDimensions.endRow, cropDimensions.endColumn }, writer ) → Element
Returns a cropped table according to given dimensions. To return a cropped table that starts at first row and first column and end in third row and column:
-
getHorizontallyOverlappingCells( table, overlapColumn ) → Array.<TableSlot>
Returns slot info of cells that starts before and overlaps a given column.
-
getVerticallyOverlappingCells( table, overlapRow, [ startRow ] ) → Array.<TableSlot>
Returns slot info of cells that starts above and overlaps a given row.
In a table below, passing
overlapRow = 3
will return slot info for cells: "j", "f", "k".
Parameters
table : Element
The table to check.
overlapRow : Number
The index of the row to check.
[ startRow ] : Number
A row to start analysis. Use it when it is known that the cells above that row will not overlap.
Defaults to
0
Returns
Array.<TableSlot>
-
removeEmptyColumns( table, tableUtils ) → Boolean
protected
Removes columns that have no cells anchored.
In table below:
Will remove columns 2 and 5.
Note: This is a low-level helper method for clearing invalid model state when doing table modifications. To remove a column from a table use
TableUtils.removeColumns()
.Parameters
table : Element
tableUtils : TableUtils
Returns
Boolean
True if removed some columns.
-
removeEmptyRows( table, tableUtils ) → Boolean
protected
Removes rows that have no cells anchored.
In table below:
Will remove rows 2 and 5.
Note: This is a low-level helper method for clearing invalid model state when doing table modifications. To remove a row from a table use
TableUtils.removeRows()
.Parameters
table : Element
tableUtils : TableUtils
Returns
Boolean
True if removed some rows.
-
removeEmptyRowsColumns( table, tableUtils )
protected
Removes rows and columns that have no cells anchored.
In table below:
Will remove row 3 and column 1.
Note: This is a low-level helper method for clearing invalid model state when doing table modifications. To remove a rows from a table use
TableUtils.removeRows()
andTableUtils.removeColumns()
to remove a column.Parameters
table : Element
tableUtils : TableUtils
-
splitHorizontally( tableCell, splitRow, writer ) → Element
Splits the table cell horizontally.
-
splitVertically( tableCell, columnIndex, splitColumn, writer ) → Element
Splits the table cell vertically.
-
trimTableCellIfNeeded( tableCell, cellRow, cellColumn, limitRow, limitColumn, writer )
Adjusts table cell dimensions to not exceed limit row and column.
If table cell width (or height) covers a column (or row) that is after a limit column (or row) this method will trim "colspan" (or "rowspan") attribute so the table cell will fit in a defined limits.
Parameters
Every day, we work hard to keep our documentation complete. Have you spotted an outdated information? Is something missing? Please report it via our issue tracker.