GroupDocs.Comparison for .NET 25.6 Release Notes
This page contains release notes for GroupDocs.Comparison for .NET 25.6
GroupDocs.Comparison version 25.6 brings performance improvements and bug fixes to enhance the overall product experience.
Full list of changes in this release
Key | Category | Summary |
---|---|---|
COMPARISONNET-4434 | Enhancement | Created ability to specify border color |
COMPARISONNET-4435 | 🔧 Fix | Fixed long processing times and poor output quality in image file comparison |
COMPARISONNET-4404 | 🔧 Fix | Shapes in Word headers not detected during comparison |
Major Features
Created ability to specify border color
We’ve added a new option to style comparison results more precisely — developers can now set a custom border color for changes using StyleSettings.BorderColor
CompareOptions options = new CompareOptions()
{
DeletedItemStyle = new StyleSettings()
{
HighlightColor = System.Drawing.Color.Red,
ShapeColor = System.Drawing.Color.LightCoral,
BorderColor = System.Drawing.Color.Red
}
};