Groupdocs.Merger on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Groupdocs.Merger on Groupdocs Blog | Document Automation Solutions for .NET & Java De......GroupDocs.Merger on GroupDocs Blog | Document Automation Solutions...Recent content in GroupDocs.Merger on GroupDocs Blog | Document...
25.10 on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in 25.10 on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Groupdocs.Con......10 on GroupDocs Blog | Document Automation Solutions for ...Recent content in 25.10 on GroupDocs Blog | Document Automation...
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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...
This topic describes how to set image resolution in PDF file using the Groupdocs.Viewer .NET API (C#)....Navigation 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....Navigation 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...Navigation 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....Navigation 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....Navigation 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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...