TableAbsorber.Visit

Visit(Page)

Extracts tables on the specified page

public virtual void Visit(Page page)
ParameterTypeDescription
pagePagePdf pocument page object.

Examples

The example demonstrates how to extract table on the first PDF document page.

// Open document
Document doc = new Document(@"D:\Tests\input.pdf");

// Create TableAbsorber object to find tables
TableAbsorber absorber = new TableAbsorber();

// Visit first page with absorber
absorber.Visit(doc.Pages[1]);

// Get access to first table on page, their first cell and text fragments in it
TextFragment fragment = absorber.TableList[0].RowList[0].CellList[0].TextFragments[1];

// Change text of the first text fragment in the cell
fragment.Text = "hi world";

// Save document
doc.Save(@"D:\Tests\output.pdf");  

See Also


Visit(Document)

Extracts tables in the specified document.

public void Visit(Document pdf)
ParameterTypeDescription
pdfDocumentPdf pocument object.

Examples

The example demonstrates how to extract table on the first PDF document page.

// Open document
Document doc = new Document(@"D:\Tests\input.pdf");

// Create TableAbsorber object to find tables
TableAbsorber absorber = new TableAbsorber();

// Visit first page with absorber
absorber.Visit(doc);

// Get access to first table on page, their first cell and text fragments in it
TextFragment fragment = absorber.TableList[0].RowList[0].CellList[0].TextFragments[1];

// Change text of the first text fragment in the cell
fragment.Text = "hi world";

// Save document
doc.Save(@"D:\Tests\output.pdf");  

See Also