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....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
Render email attachments with GroupDocs.Viewer for Java in the same way as you would render any other documents...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for .NET....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
The page describes how to load PDF, Word, Excel, PowerPoint documents from Azure Blob storage when using GroupDocs.Annotation for .NET....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
This article explains the ability of the GroupDocs.Redaction API to get the general document information, which includes FileType, PageCount and FileSize....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
The API allows you to add watermark to email attachments (all the attachments of supported types in an email message)...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
This article explains how to get the width and height of the document pages using GroupDocs.Viewer for Java....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
The page describes how to load PDF, Word, Excel, PowerPoint documents from FTP using GroupDocs.Annotation for .NET....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...
This article demonstrates how to convert file stored in FTP storage using GroupDocs.Conversion for .NET API....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...