This article explains how to customize the display of revisions in the output document in GroupDocs.Comparison for .NET....This article explains how to customize the display of revisions in the output document in GroupDocs.Comparison for .NET.
This article explains how to set document password after files comparison within your Java applications using GroupDocs.Comparison for Java....This article explains how to set document password after files comparison within your Java applications using GroupDocs.Comparison for Java.
Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Java....Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Java.
This article explains how to get extended information about comparison of documents on the summary page with GroupDocs.Comparison for Java....This article explains how to get extended information about comparison of documents on the summary page with GroupDocs.Comparison for Java.
Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Node.js via Java....Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Node.js via Java.
This article explains how to set author of changes name in the resulting document in GroupDocs.Comparison for Node.js via Java....This article explains how to set author of changes name in the resulting document in GroupDocs.Comparison for Node.js via Java.
This article explains how to use the Microsoft Word Track Changes comparing as a built-in feature in GroupDocs.Comparison for Node.js via Java....This article explains how to use the Microsoft Word Track Changes comparing as a built-in feature in GroupDocs.Comparison for Node.js via Java.
This page describes how the search api is used to obtain a list of supported file types....This page describes how the search api is used to obtain a list of supported file types.
You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods:
import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *
* This is an example of ILogger implementation, tracking count of error messages. *
*/ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods:
import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** * <p> * This is an example of ILogger implementation, tracking count of error messages. * </p> */ public class CustomLogger implements ILogger { private ArrayList<String> _errors; private ArrayList<String> _traces; private ArrayList<String> _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList<String>(); _traces = new ArrayList<String>(); _warnings = new ArrayList<String>(); } public void error(String message) { _errors.