get_tables method

get_tables

Extracts tables from the document.

Returns

A collection of PageTableArea objects; null if tables extraction isn’t supported.

def get_tables(self):
    ...

Example

The following example shows how to extract tables from the whole document:

get_tables

Extracts tables from the document.

Returns

A collection of PageTableArea objects; null if tables extraction isn’t supported.

def get_tables(self, options):
    ...
Parameter Type Description
options groupdocs.parser.options.PageTableAreaOptions The options for tables extraction.

Example

The following example shows how to extract tables from the whole document:

get_tables

Extracts tables from the document page.

Returns

A collection of PageTableArea objects; null if tables extraction isn’t supported.

def get_tables(self, page_index):
    ...
Parameter Type Description
page_index int The zero-based page index.

Example

The following example shows how to extract tables from the document page:

get_tables

Extracts tables from the document page.

Returns

A collection of PageTableArea objects; null if tables extraction isn’t supported.

def get_tables(self, page_index, options):
    ...
Parameter Type Description
page_index int The zero-based page index.
options groupdocs.parser.options.PageTableAreaOptions The options for tables extraction.

Example

The following example shows how to extract tables from the document page:

See Also