Hi David,
Thank you for the details.
We are not able to reproduce the issue. We can draw a PdfLightTable in a specified location using the result.Bounds property and also paginate bounds property of the PdfLightTableLayoutFormat as shown in the code below:
result.Bounds Property:
PdfLayoutResult result = table.Draw(page, new RectangleF(10, 60, 300, 0),format1);
PdfLayoutResult result1 = table.Draw(page, new RectangleF(result.Bounds.X, result.Bounds.Bottom+20, result.Bounds.Width, result.Bounds.Height), format1);
PaginateBounds Property:
PdfLightTableLayoutFormat format2 = new PdfLightTableLayoutFormat();
format2.Layout = PdfLayoutType.Paginate;
format2.Break = PdfLayoutBreakType.FitElement;
format2.PaginateBounds = new RectangleF(result.Bounds.X,(2* result.Bounds.Bottom)+20,400,0);
table.Draw(page,format2.PaginateBounds,format2);
I have placed a simple sample for the same in the location below:
ForumTable1783537962.zipKindly try this and also could you please provide more details about your exact requirement. This will help us a lot in further investigation.
Regards,
Priyadharshini.