Hi All
As the title implies, I would like to add an item to an existing table in a PDF that I have loaded. Something like this
PdfLoadedDocument loadedDocument = new PdfLoadedDocument(PdfFileName);
PdfGrid grid = new PdfGrid();
doc = PdfDocument.Merge(null, loadedDocument) as PdfDocument;
page = doc.Pages[0];
grid = page.grid[index]; <--------- this would be nice
and so ...
grid.rows[1].cells[2].value = "appended value";
Is this possible?