-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
PLTableCell.createEmptyCell() with column span? #29
Comments
That's a quicky - sure :) |
Part of the next 7.0.1 release |
Nice and thanks for that but I meant something slightly different: with
|
So why not just adding this:
|
@fheldt you are absolutely right - reduces the amount of objects needed :) |
PLTableCell.createEmptyCell() is quite handy but it is currently not possible to define a column span.
How about a variant like PLTableCell.createEmptyCell(int colspan)?
So instead of writing
plTable.addRow(PLTableCell.createEmptyCell(), PLTableCell.createEmptyCell(), PLTableCell.createEmptyCell(), ...)
just
plTable.addRow(PLTableCell.createEmptyCell(3), ...)
The text was updated successfully, but these errors were encountered: