Compare two documents detect inserted or deleted items in .NET


1.I know Office word has the more options to compare settings(insert,delete tables and move footer and header) ,and show revision level and position.I wonder if groupdocs.comparison support this function?

2.I wonder if groupdocs.comparison can define the color and style for an object(table) which should be added or deleted.

3.Can the prompts(line break was deleted) localized to Chinese?

@business,

API supports following features:

Following code will elaborate how to you can change inserted item style (e.g. color):

CompareOptions compareOptions = new CompareOptions()
{
     InsertedItemStyle = new StyleSettings()
     {
            FontColor = System.Drawing.Color.Yellow
     }
};

Please download sample application here.