Get extended information on the summary page
Leave feedback
On this page
GroupDocs.Comparison for Python via .NET can generate a summary page with additional statistics about the comparison.
Include extended statistics along with the standard summary page.
import groupdocs.comparison as gc
with gc.Comparer("source.docx") as comparer:
comparer.add("target.docx")
options = gc.CompareOptions()
options.extended_summary_page = True
comparer.compare("result.docx", options)
🔹 Use case: Provide management with detailed metrics beyond the standard summary counts.
The result is as follows:
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.