table1.pdf (24.2 KB)
table2.pdf (24.5 KB)
table3.pdf (24.7 KB)
But you can read the table3 table
I need to set how to read table1 and table2 it
Thank you very much for your reply!
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document(filePath);
foreach (var page in pdfDocument.Pages)
{
Aspose.Pdf.Text.TableAbsorber absorber = new Aspose.Pdf.Text.TableAbsorber();
absorber.Visit(page);
}
}