Compare bookmarks in Word documents

On this page


GroupDocs.Comparison allows you to compare bookmarks in the Word documents.

To compare bookmarks in the Word documents, follow these steps:

  1. Instantiate the Comparer object. Specify the source file path or stream.
  2. Call the Add method. Specify the target file path or stream.
  3. Instantiate the CompareOptions object. Set the CompareBookmarks property to true.
  4. Call the Comparer method. Specify the CompareOptions object from the previous step.

The following code snippet shows how to demonstrate how to compare bookmarks:

using (Comparer comparer = new Comparer(sourcePath))
{
    comparer.Add(targetPath);

    comparer.Compare(resultPath, new CompareOptions {
        CompareBookmarks = true
    });
}

The result of compared bookmarks is as follows:

On this page