boxable
boxable copied to clipboard
I need the rowspan in my table to accommodate bigger list of key value pairs of textual data.
Hi,
I am using boxable library with PDFBox to create a PDF where I need the rowspan in my table to accommodate bigger list of key value pairs of textual data. I would like to know how can I achieve the rowspan in boxable library?
Regards, Pankaj
method like createRowSpan() doesn't exist. You need to make that manually something like:
row1.createCell(CELL A)
row1.createCell(CELL B)
row2.createCell(CELL C) <-- only 1 cell (rowspan)