Sort Score
Result 10 results
Languages All
Labels All
Results 1,771 - 1,780 of 5,772 for

groupdocs.comparison,

(0.08 sec)
  1. Load document of specific format | Documentation

    This article explains how to load document of specific format....This article explains how to load document of specific format.

    docs.groupdocs.com/watermark/java/load-document...
  2. Load password-protected file | Documentation

    Learn how to load a password-protected file by using .NET redaction API...Learn how to load a password-protected file by using .NET redaction API

    docs.groupdocs.com/redaction/net/load-password-...
  3. Set image resolution | Documentation

    This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer .NET API (C#)....This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer .NET API (C#).

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  4. Reorder pages | Documentation

    Reorder pages when rendering documents to PDF with GroupDocs.Viewer for .NET...Reorder pages when rendering documents to PDF with GroupDocs.Viewer for .NET

    docs.groupdocs.com/viewer/net/reorder-pages/
  5. Search flow | Documentation

    This article shows the internal stages of each search operation using Java search API....This article shows the internal stages of each search operation using Java search API.

    docs.groupdocs.com/search/nodejs-java/search-flow/
  6. Using redaction filters | Documentation

    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....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.

    docs.groupdocs.com/redaction/java/redaction-fil...
  7. Merge pages from various documents | Documentation

    This article explains how to merge some pages from different documents into single PDF, DOCX, Excel or PowerPoint document using GroupDocs.Merger for Java....This article explains how to merge some pages from different documents into single PDF, DOCX, Excel or PowerPoint document using GroupDocs.Merger for Java.

    docs.groupdocs.com/merger/java/merge-pages-from...
  8. Use advanced logging | Documentation

    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.

    docs.groupdocs.com/redaction/java/use-advanced-...
  9. Get supported file formats | Documentation

    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.

    docs.groupdocs.com/search/net/get-supported-fil...
  10. Pre-rasterize | Documentation

    This article shows how to pre-rasterize a document using the redaction API....This article shows how to pre-rasterize a document using the redaction API.

    docs.groupdocs.com/redaction/java/pre-rasterize/