Follow the instructions on this page to configure the license and find out the restrictions when using Groupdocs.Comparison for Java without a license (Evaluation Limitations)...Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Groupdocs.Redaction allows you to set the page-based scope for your redaction of two types:
page range, a given number of pages at certain offset from the beginning or the end of the page; page area (on each page), which is a top-left based rectangle. All filters inherit from RedactionFilter and as an array are set to Filters property of the ReplacementOptions.
You can combine these filters in one set in order to set the scope of redaction to an area on a specific page....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
This article explains how to optimize memory utilization when editing large Word documents using Groupdocs.Editor for Java API....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Groupdocs.Conversion for Java is an advanced document conversion API developed to convert files of different formats from within Java applications....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
The page describes how to update annotation replies when collaborate over document using Groupdocs.Annotation for .NET API....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
This article shows that how to load file from stream using redaction API...Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with Groupdocs.Comparison for Java....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
Follow this guide and learn how to convert email attachments to different format based on attachment type using Groupdocs.Conversion for Node.js via Java....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
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....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...