boxable icon indicating copy to clipboard operation
boxable copied to clipboard

I need the rowspan in my table to accommodate bigger list of key value pairs of textual data.

Open mailidpankaj opened this issue 5 years ago • 1 comments

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

mailidpankaj avatar Sep 06 '20 03:09 mailidpankaj

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)

Frulenzo avatar Oct 06 '20 05:10 Frulenzo