TableAbsorber.Visit

Visit(Page)

تستخرج الجداول من الصفحة المحددة

public virtual void Visit(Page page)
ParameterTypeDescription
pagePageكائن صفحة مستند PDF.

Examples

المثال يوضح كيفية استخراج جدول من الصفحة الأولى لمستند PDF.

// 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)

تستخرج الجداول من المستند المحدد.

public void Visit(Document pdf)
ParameterTypeDescription
pdfDocumentكائن مستند PDF.

Examples

المثال يوضح كيفية استخراج جدول من الصفحة الأولى لمستند PDF.

// 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