Compare of Variables and Document properties

On this page


GroupDocs.Comparison allows you to compare various properties of a Word document such as Variable, Built, and Custom properties.

Use the following fields of the CompareOptions class to enable comparison functions for document properties:

To activate compare document properties, follow these steps:

  1. Instantiate the Comparer object. Specify the source file path or stream.
  2. Call the Add method. Specify the target file path or stream.
  3. Instantiate the CompareOptions object. Set the CompareVariableProperty property to true for the variable properties and/or CompareDocumentProperty for built and custom properties.
  4. Call the Comparer method. Specify the CompareOptions object from the previous step.

The following code snippet shows how activate comparison of the Variable, Built and Custom properties:

using (Comparer comparer = new Comparer(sourcePath))
{
    comparer.Add(targetPath);
    CompareOptions options = new CompareOptions();
    options.CompareVariableProperty = true; // to activate the comparison of variable properties
    options.CompareDocumentProperty = true; // to activate the comparison of built and custom properties

    comparer.Compare(resultPath, options);
}

The result is as follows:

On this page