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
-
NuGet – Upgrade to the latest GroupDocs.Parser package via NuGet. Choose the package that matches your target platform:
- Cross‑platform .NET 6:
NuGet\Install-Package GroupDocs.Parser -Version 25.11.0 - Windows‑only .NET Framework 4.6.2 and .NET 6:
NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 25.11.0
- Cross‑platform .NET 6:
-
Direct Download – Download the assemblies for .NET and .NET Framework from the GroupDocs.Parser for .NET 25.11 release page:
https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net-25.11-dlls-only/
https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net-25.11/
Resources
- Documentation – Explore the full API reference and usage guides on the official docs site: https://docs.groupdocs.com/parser/net/
- Support Forum – Ask questions or report issues in the GroupDocs.Parser community forum: https://forum.groupdocs.com/c/parser/