Hi,
I need create multiples tables in existing pdf.
For draw the first table I do
// Page is PdfLoadedPage
var page = loadedDocument.Pages[i];
// Draw the grid,
pdfGrid.Draw( page.Graphics, initPoint.X, initPoint.Y, _page.Size.Width - 30);
But with this method, I can't get the table dimensions (height) for draw the next table.
Other methods of Draw require a PdfPage, but I haven't this object and I can't convert PdfLoadedPage to PdfPage.
So, what can I do?
Thanks