0
我創建了幾個PdfPTable沒有問題,但現在我不知道什麼是錯的。第四行不顯示。在iText中添加PdfPCell PdfPtable不再工作
table = new PdfPTable(4);
table.setSpacingBefore(10);
columnWidths = new float[] {60,10,10,10};
table.setWidths(columnWidths);
PdfPCell cellFooter = new PdfPCell(new Phrase("Rows One", ARIAL_12_BOLD));
table.addCell(cellFooter);
for(int k=0; k<3; k++){
table.addCell("");
}
cellFooter = new PdfPCell(new Phrase("Row Two", ARIAL_12_BOLD));
table.addCell(cellFooter);
for(int k=0; k<3; k++){
table.addCell("");
}
cellFooter = new PdfPCell(new Phrase("Row Three", ARIAL_12_BOLD));
cellFooter.setColspan(4);
table.addCell(cellFooter);
// Row Four not displayed
for(int k=0; k<4; k++){
table.addCell("");
}