Show revisions
Leave feedback
On this page
GroupDocs.Comparison for Python via .NET lets you toggle the visibility of revisions in the output document.
Turn off revision display to simplify the output document.
import groupdocs.comparison as gc
with gc.Comparer("source.docx") as comparer:
comparer.add("target.docx")
options = gc.CompareOptions()
options.show_revisions = False
comparer.compare("result.docx", options)
🔹 Use case: Produce a clean deliverable without inline revision markers for end users.
The result is as follows:
Disable display Revisions |
---|
![]() |
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.