Sort Score
Result 10 results
Languages All
Labels All
Results 1,391 - 1,400 of 4,650 for

groupdocs.signature,

(0.05 sec)
  1. Show Revisions | Documentation

    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.

    docs.groupdocs.com/comparison/net/show-revisions/
  2. Set password for output document | Documentation

    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.

    docs.groupdocs.com/comparison/java/set-password...
  3. Compare multiple documents | Documentation

    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.

    docs.groupdocs.com/comparison/java/compare-mult...
  4. Get extended information on the summary page | ...

    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.

    docs.groupdocs.com/comparison/java/get-extended...
  5. Compare multiple documents | Documentation

    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.

    docs.groupdocs.com/comparison/nodejs-java/compa...
  6. Setting author of changes | Documentation

    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.

    docs.groupdocs.com/comparison/nodejs-java/setti...
  7. Show results of comparison as a Word Track Chan...

    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.

    docs.groupdocs.com/comparison/nodejs-java/word-...
  8. 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-...
  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. 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-...