Quoting Singer Andreas <[EMAIL PROTECTED]>:

> Hello,
> 
> Using your iText-library, Tables that span multiple pages are cut into
> different parts automatically. That's great! But is there a possibility to
> start a new Page somewhere within such a Table at an arbitrary position?
> I've tried to set a document.newPage() somewhere between my table.addCell()
> statements but that didn't help me out. The Table is still cut off
> automatically when it reaches the end of the page.

The document IS NOT AWARE of the Table UNTIL YOU ADD IT.
So if you add newPages BEFORE you add the Table. These
newPages are added BEFORE the Table (and maybe they are
ignored, because you can't add a newPage after a blank
page).

Why don't you just add the Table, invoke a new Page and
go on with a new Table.

Bruno


-------------------------------------------------------
This sf.net email is sponsored by: Dice - The leading online job board
for high-tech professionals. Search and apply for tech jobs today!
http://seeker.dice.com/seeker.epl?rel_code=31
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to