GroupDocs.Parser for .NET 25.11 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
PARSERNET-2755Implement extraction of tables from DOCX documents without a templateEnhancement

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();
}