Sort Score
Result 10 results
Languages All
Labels All
Results 1,941 - 1,950 of 3,869 for

assembly

(0.04 sec)
  1. 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....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/use-advanced-...
  2. Hello, World! | Documentation

    Quickly get started with GroupDocs.Redaction for Python via .NET by creating and running a simple example....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/python-net/hello-w...
  3. Get file info | Documentation

    This article explains how to detect document file type, size and calculate pages count with GroupDocs.Comparison....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/comparison/python-net/get-fi...
  4. Set password for output document | Documentation

    This article explains how to set document password after files comparison within your Python applications using GroupDocs.Comparison for Python via .NET....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/comparison/python-net/set-pa...
  5. Merge PDF | Documentation

    Follow this guide and learn how to merge PDF files, combine several PDFs into one using GroupDocs.Merger for Java API and couple lines of code...Assembly Product Solution GroupDocs...

    docs.groupdocs.com/merger/java/merge-pdf/
  6. Merge text files | Documentation

    Learn how to merge TXT files, combine TXT files into one file programmatically in java language using GroupDocs.Merger for Java library....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/merger/java/merge/txt/
  7. Loading specific file formats | Documentation

    In some cases it’s required to specify the document format manually to guarantee correct output produced by GroupDocs.Parser. The following are the cases when the document format must be specified manually: Markdown documents MHTML documents OTP documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the document format for Markup document. Instantiate the LoadOptions object and pass the document format in LoadOptions(FileFormat) constructor; Create Parser object and call any method....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/parser/java/loading-specific...
  8. Indexing with stop words | Documentation

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/search/java/indexing-with-st...
  9. Removing metadata | Documentation

    Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove metadata properties....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/metadata/python-net/removing...
  10. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iAssembly Product Solution GroupDocs...

    docs.groupdocs.com/metadata/nodejs-java/getting...