2012-06-15 84 views

回答

0

我不確定我已經理解了你的問題,但在PdfPTable對象上有方法setExtendLastRow,只要需要填充當前頁面,表格上的最後一行爲高,直到底部邊距爲止。示例:

PdfPTable tabella = new PdfPTable(4); 
    PdfPCell cell = new PdfPCell(new Phrase("some text here")); 
    tabella.addCell(cell); 
    tabella.addCell(cell); 
    tabella.addCell(cell); 
    tabella.addCell(cell); 
    tabella.setExtendLastRow(true); 

表中只有4個單元格延伸到頁面的底部。