GroupDocs.Comparison for .NET 23.11 Release Notes

Full list of changes in this release

KeyCategorySummary
COMPARISONNET-2812FeatureGet box property of source document

Get changed elements coordinates from source or target document

Starting from 23.11 we’ve introduced an ability to get changed elements coordinates from source or target document. This feature currently supported for Words. Here is a code snippet how to enable this feature.

using System;
using GroupDocs.Comparison;
using GroupDocs.Comparison.Options;
class YoursProgram
{
  static void Main(string[] args)
  {
      using (Comparer comparer = new Comparer(sourcePath))
      {
	    comparer.Add(targetPath);
	    CompareOptions options = new CompareOptions() {CalculateCoordinates = true, CalculateCoordinatesMode = CalculateCoordinatesModeEnumeration.Source};
	    comparer.Compare(resultPath, options);
      }
  }
}

more details could be found on documentation here.

Updates in the further version

Starting from next version (23.12) we are going to exclude separete assemby for .NET 6 from our package. But don’t worry, the library will still work under .NET Core. We are doing this just to reduce package size.