ITextTableCellRange textTableCellRangeClone) throws TextException {
try {
ITextTable textTableLast = textTableManagement.getLastTextTable();
int singleTableRowCount = textTableLast.getRowCount();
if ((singleTableRowCount + count) * columnCount <= ITextTable.MAX_CELLS_IN_TABLE) {
textTableLast.addRow(count);
} else {
ITextTableCellRange textTableCellRangeHeaderClone = textTableLast
.getCellRange(0, 0, columnCount - 1, 0);
int helpRows = maxRowsInTable - singleTableRowCount;
if (helpRows > 0) {