We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use following code to get the result like the first image.
PdfPTable table = new PdfPTable(2); PdfPCell cell = new PdfPCell(); cell.setRowspan(2); cell.addElement(new Chunk("rowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspanrowspan")); table.addCell(cell); table.addCell("row1"); table.addCell("row2"); document.add(table);
However, I want heights of rows in the second column to be the same like following image.
How should I change my code to get the expected result.
The text was updated successfully, but these errors were encountered:
After my investigations, I find that maybe the first case is a default result. Do you think that letting it be split evenly is reasonable?
Sorry, something went wrong.
It seems a nice feature.
Successfully merging a pull request may close this issue.
I use following code to get the result like the first image.
However, I want heights of rows in the second column to be the same like following image.
How should I change my code to get the expected result.
The text was updated successfully, but these errors were encountered: