Add space between two tables in iTextSharp
You can use SpacingBefore
or SpacingAfter
on the tables. Both take a float
parameter.
Example :
table1.SpacingBefore = 10f;
table1.SpacingAfter = 12.5f;
table2.SpacingBefore = 10f;
table2.SpacingAfter = 12.5f;