Setting author of changes

On this page

GroupDocs.Comparison allows you to set author of changes name in the resulting document. To do this, follow these steps:

  1. Instantiate the Comparer object. Specify a source file path or an input stream.
  2. Call the Add method. Specify a target file path or an input stream.
  3. Instantiate the CompareOptions object. Set the WordTrackChanges and ShowRevisions properties to true.
  4. Set author of changes by changing the RevisionAuthorName property.
  5. Call the Compare method. Specify the CompareOptions object from previous step.

The following code snippet shows how to change author of changes:

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

	CompareOptions options = new CompareOptions()
    {
        ShowRevisions = true,
        WordTrackChanges = true,
        RevisionAuthorName = "New author",
    };

    comparer.Compare(resultPath, options);
}

The result is as follows:

Change author

On this page