GroupDocs.Comparison for .NET 21.3 Release Notes

Major Features

Below is the list of most notable changes in release of GroupDocs.Comparison for .NET 21.3:

  • Implemented replacement for empty lines, instead of displaying changes in result document for paragraphs in Word format
  • Improved image comparison in Cells format
  • Improved creating charts in Cells format
  • Improved display of components with styles changes for Word format
  • Fixed issue with closing streams while comparing text documents

Full List of Issues Covering all Changes in this Release

KeySummaryIssue Type
COMPARISONNET-2560Word Document comparison output is not as expectedBug
COMPARISONNET-2597Excel files comparison issueBug
COMPARISONNET-2624Incomplete creating chartsBug
COMPARISONNET-2626Cannot get the line difference and how to show style changes details in outputBug
COMPARISONNET-2627Prevent situation when during comparing text file stream is emptyBug

Public API and Backward Incompatible Changes

  1. To see changes in the display of information about components with style changes , you can use the following code:
using (Comparer comparer = new Comparer(sourcePath))
{
    comparer.Add(targetPath);

    CompareOptions options = new CompareOptions();
    options.DetectStyleChanges = true;
    options.DetalisationLevel = DetalisationLevel.High;

    comparer.Compare(resultPath, options);
}
  1. Learn more about getting result document with changed content replaced with empty lines can be found here.