Compare multiple documents with specific compare settings

Note
This feature available for Microsoft Word documents, Microsoft PowerPoint, and Open Document presentations only.

GroupDocs.Comparison allows you to compare more than two documents and specify specific comparison options like styling for detected changes, comparison detalization level, etc.

To compare multiple documents using the specific options, follow these steps:

  1. Instantiate the Comparer object. Specify the source document path or stream.
  2. Call the Add method and specify the target document path or stream. Repeat this step for every target document.
  3. Instantiate the CompareOptions object and specify the appropriate options.
  4. Call the Compare method. Specify the pass CompareOptions object from the previous step.

The following code snippets show how to compare multiple documents with the appropriate options:

Compare multiple documents with specific compare settings from local disk

using (Comparer comparer = new Comparer("source.docx")
{
	comparer.Add("target1.docx");
    comparer.Add("target2.docx");
    comparer.Add("target3.docx");
	CompareOptions compareOptions = new CompareOptions()
    {
    	InsertedItemStyle = new StyleSettings()
        {
        	FontColor = System.Drawing.Color.Yellow
        }
    };
    comparer.Compare("result.docx", compareOptions);
}

The result is as follows:

Compare multiple documents with specific compare settings from stream

using (Comparer comparer = new Comparer(File.OpenRead("source.docx"))
{
	comparer.Add(File.OpenRead("target1.docx"));
    comparer.Add(File.OpenRead("target2.docx"));
    comparer.Add(File.OpenRead("target3.docx"));
    CompareOptions compareOptions = new CompareOptions()
    {
    	InsertedItemStyle = new StyleSettings()
        {
        	FontColor = System.Drawing.Color.Yellow
        }
    };
    comparer.Compare(File.Create("result.docx"), compareOptions);
}