Compare bookmarks in Word documents
Leave feedback
On this page
GroupDocs.Comparison allows you to compare bookmarks in Word documents.
To compare bookmarks in the Word documents, follow these steps:
- Instantiate the
Comparer
object. Specify the source file path or stream. - Call the
add()
method. Specify the target file path or stream. - Instantiate the
CompareOptions
object. Set theCompareBookmarks
property totrue
. - Call the
compare()
method. Specify theCompareOptions
object from the previous step.
The following code snippet shows how to demonstrate how to compare bookmarks:
const comparer = new groupdocs.comparison.Comparer(sourcePath);
comparer.add(targetPath);
const compareOptions = new groupdocs.comparison.CompareOptions();
compareOptions.setCompareBookmarks(true);
const resultPath = comparer.compare(outputPath, compareOptions);
The result of compared bookmarks 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.