What’s new in this release

  • [Enhancement] Implement extraction of tables from DOCX documents without a template (PARSERNET-2755)

    This enhancement adds the ability to pull table data straight from DOCX files, eliminating the need for a pre‑defined extraction template. The public API remains unchanged.

Usage

Extract tables from a specific page

using (Parser parser = new Parser(filePath))
{
    int pageIndex = 0;
    IEnumerable<PageTableArea> tables = parser.GetTables(pageIndex);
}

Extract tables from the entire document

using (Parser parser = new Parser(filePath))
{
    IEnumerable<PageTableArea> tables = parser.GetTables();
}

Fixes and enhancements

  • [Enhancement] Extraction of tables from DOCX documents without a template (PARSERNET-2755)

No bug fixes are included in this release.

How to get the update

Resources