break;
// we run out of column. Let's go to another one
++currentColumn;
if (currentColumn >= allColumns.length)
break;
ct.setSimpleColumn(allColumns[currentColumn], document.bottom(),
allColumns[currentColumn] + columnWidth, topColumn, 15, Element.ALIGN_JUSTIFIED);
ct.setLeading(2, 1);
}
// step 5: we close the document
document.close();