I tested version 24.4. I have noticed it did not solve this problem. My customer is really disappointed about this. I really hope this issue is resolved as soon as possible with hotfixes.
I’m really counting on you to resolve this problem swiftly. Could you please provide an update on when the hotfix version will be updated?
We are actively working on this issue. We’ll notify you as soon as we have any ETA of hotfix.
I’m counting on you to accelerate the process of resolving this issue, as our project has been severely impacted by it.
We are actively working on resolving this ticket and making every effort to provide a solution as soon as possible. We will notify you as soon as we have it.
Will the forthcoming hotfix, which resolves this issue, be rolled out in version 24.4 or will it be deferred to version 24.5?
Is there any information available about the hotfix version? I’ve been waiting for details.
We are happy to inform you that this particular issue is fixed. Please get the hotfix. We appreciate your patience.
The issues you have found earlier (filed as COMPARISONNET-3878) have been fixed in this update. This message was posted using Bugs notification tool by anton.samarskyy
I checked the 24.5 update and saw: changes are marked in black so it is impossible to distinguish whether they are deleted or added.
How changes are marked depends on the FontColor
and HighlightColor
fields of the InsertedItemStyle/DeletedItemStyle/ChangedItemStyle
options of the CompareOptions
class.
In your code example, the FontColor
option is set to black for both InsertedItemStyle
and ChangedItemStyle
. The color of the borders of the changed shapes is also affected by the FontColor
option.
In this case, it makes me unable to distinguish whether they are removed or added, so is it a bug?
@tronghieu88
To distinguish whether elements are deleted or added, you need to set different values for the FontColor
attribute, here is the example:
CompareOptions compareOptions = new CompareOptions()
{
// Indicates that the changed content should be marked
MarkChangedContent = true,
// Enables detection of style changes between the compared documents
DetectStyleChanges = true,
// Specifies the style settings for inserted items
InsertedItemStyle = new StyleSettings()
{
// Sets the font color for inserted text to blue
FontColor = System.Drawing.Color.Blue,
// Sets the highlight color for inserted text to light blue
HighlightColor = System.Drawing.Color.LightBlue
},
// Specifies the style settings for deleted items
DeletedItemStyle = new StyleSettings()
{
// Sets the font color for deleted text to red
FontColor = System.Drawing.Color.Red,
// Sets the highlight color for deleted text to light coral
HighlightColor = System.Drawing.Color.LightCoral
},
// Specifies the style settings for changed items
ChangedItemStyle = new StyleSettings()
{
// Sets the font color for changed text to green
FontColor = System.Drawing.Color.Green,
// Sets the highlight color for changed text to light green
HighlightColor = System.Drawing.Color.LightGreen
}
};