GroupDocs.Parser for .NET 25.11 Release Notes
This page contains release notes for GroupDocs.Parser for .NET 25.11
Full List of Issues Covering all Changes in this Release
| Key | Summary | Category |
|---|---|---|
| PARSERNET-2755 | Implement extraction of tables from DOCX documents without a template | Enhancement |
Public API and Backward Incompatible Changes
Implement extraction of tables from DOCX documents without a template
Description
This enhancement provides the ability to extract tables from DOCX documents without a template.
Public API changes
None.
Usage
The following example shows how to extract all tables from a given page of a document.
using (Parser parser = new Parser(filePath))
{
int pageIndex = 0;
IEnumerable<PageTableArea> tables = parser.GetTables(pageIndex);
}
The following example shows how to extract all tables from the entire document.
using (Parser parser = new Parser(filePath))
{
IEnumerable<PageTableArea> tables = parser.GetTables();
}