iTextSharp large table: adding in chunks leaves visible gaps in the table

62 Views Asked by At

I have a large table I'm adding to a document. In order to avoid running out of memory, I'm doing this:

if (rowCounter % 100 == 0)
{
   document.Add(affidavitsTable);
}

That improved performance, but now, after ever 100 rows, there's a gap in the middle of the table:

I've placed a screenshot here - sorry can't post images yet... :-/

I'm don't really understand what the comments mean here but I'm wondering if it's related.

Any help would be appreciated!

Thanks, Eliezer

1

There are 1 best solutions below

0
On BEST ANSWER

I found the answer. This line was hiding in my code:

affidavitsTable.SpacingBefore = 8;

:-\