Sort Score
Result 10 results
Languages All
Labels All
Results 891 - 900 of 31,401 for

groupdocs.total

(0.28 sec)
  1. Barcode Image Generation in Spreadsheet Documen...

    Note The code uses some of the objects defined in The Business Layer. Barcode Generation in Microsoft Spreadsheet Template Syntax Add a textbox to your template at the place where you want a barcode image to be inserted. Add the following syntax: <> Download Template Get the template from here. Barcode.xlsx The Code...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/assembly/java/barcode-image-...
  2. Working with Simple Data Sources | GroupDocs

    Note This feature is only compatible with GroupDocs.Assembly for Java 19.10 or later releases. Support Simple and Standalone Data Sources The API provides support for standalone and specific data sources for various types of data like JSON, XML and CSV etc. The support is available for XML and CSV data sources so far. Articles in this section...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/assembly/java/working-with-s...
  3. Updating Fields while Assembling Word Processin...

    Note This feature is only compatible with GroupDocs.Assembly for .NET 3.3.0 or later releases. Note The code uses some of the objects defined in The Business Layer. The Recipe Set up the source document template path Set up destination report path Instantiate DocumentAssembler class Set options, DocumentAssemblyOptions.UpdateFieldsAndFormulas Generate report Download Template Get the template from here. Update_Field_XML.docx The Code...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/assembly/net/updating-fields...
  4. Showcases | GroupDocs

    Code examples and live demostrations of GroupDocs.Merger for Python via .NET...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/merger/python-net/showcases/
  5. Import documents | GroupDocs

    This section describes how to import documents into another document as OLE objects using Java language...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/merger/java/import-documents/
  6. Working with List Reports - Bulleted | GroupDocs

    The Bulleted List As per wikipedia, a Bulleted List can be described as: In typography, a bullet ( • ) is a typographical symbol or glyph used to introduce items in a list. For example: Item 1 Item 2 Item 3 For more information, please visit wikipedia article. Articles in this section...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/assembly/java/working-with-l...
  7. Creating an index | GroupDocs

    The articles in this section describe advanced search index creation topics. Please find how to apply index settings, subscribe events and optimize your work with multiple indexes in single index repository: More resources GitHub examples You may easily run the code from documentation articles and see the features in action in our GitHub examples: GroupDocs.Search for .NET examples GroupDocs.Search for Java examples Free online document search App Along with full featured ....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/search/nodejs-java/creating-...
  8. Classify Raw Text | GroupDocs

    Simple IAB-2 text classification Call Classify method with a text as the first parameter to perform classification. Default taxonomy (IAB-2) and bestClassesCount (1) will be used. var response = classifier.Classify("Medicine is an important part of our lifes"); Console.WriteLine(response.BestClassName, response.BestClassProbability); Raw text classification with Documents taxonomy and 2 best classes to return Taxonomy, bestClassesCount and precisionRecallBalance could also be specified: var response = classifier.Classify("Medicine is an important part of our lifes", 2, Taxonomy....Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/classification/net/classify-...
  9. List and print all supported file types | Group...

    This article explains how to list and print file types supported by GroupDocs.Viewer for Java...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/viewer/java/how-to-list-and-...
  10. Load from Stream | GroupDocs

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Close Navigation Products GroupDocs.Total Product Family GroupDocs...

    docs.groupdocs.com/redaction/java/load-from-str...