Hi Team,
we are license with Aspose , We are facing issue that add new row for existing table in PDF page. I have tried following code but not no use and the got the ''Collection is ready only" ,This is very high important issue to resolve .Pls help us .
private Aspose.Pdf.Document WriteDataToPDFPage(Aspose.Pdf.Document doc, AuditParticipantExportPDFData DataItem)
{
doc = WriteDataToMainPDFPage(doc, DataItem);
doc = WriteDataCertificationSectionPDFPage(doc, DataItem);
TableAbsorber absorber = new TableAbsorber();
// Visit first page with absorber
absorber.Visit(doc.Pages[1]);
// Get first table on the page
AbsorbedTable table = absorber.TableList[1];
AbsorbedRow row = absorber.TableList[0].RowList[1];
absorber.TableList[0].RowList.Add(row);
return doc;
}
Thanks
Sreeni