if (currentLength > count) {
count = currentLength;
}
currentLength = 0;
} else if (column instanceof Column) {
Column tableColumn = (Column) column;
// For new row, save length of previsous.
if (tableColumn.isBreakBefore()) {
if (currentLength > count) {
count = currentLength;
}
currentLength = 0;
}