Sort Score
Result 10 results
Languages All
Labels All
Results 6,571 - 6,580 of 10,459 for

document viewer

(0.62 sec)
  1. Search for embedded object with custom encrypti...

     This article explains how to search for embedded electronic signatures with custom encryption in Document metadata. This topic contains example of custom encryption, class definition and search for encrypted objects in the Document metadata with GroupDocs.Signature....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/search-for-em...
  2. How to Convert DOCX to SVG using Java

    This article includes instructions on how to convert DOCX to SVG using Java, as well as sample code that illustrates the procedure to transform DOCX to SVG in Java....Viewer Product Family GroupDocs.Comparison...When you need to view the document’s contents in a web browser...

    kb.groupdocs.com/conversion/java/how-to-convert...
  3. Extract data from databases | GroupDocs

    Complete guide to extracting data from databases via ADO.NET using GroupDocs.Parser for .NET. Learn how to connect to SQLite, SQL Server, and other database providers to extract table data....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/extract-data-from...
  4. Create Search Report using C#

    Learn how to create search report using C# for indexed data. A sample code example will be provided to generate search report in C# without installing extra software....Viewer Product Family GroupDocs.Comparison...and the number of matched documents. These reports are particularly...

    kb.groupdocs.com/search/net/create-search-repor...
  5. Working with GroupDocs.Assembly Engine | GroupDocs

    About this section The articles in this section will be talking about technical concepts to be considered when creating Document templates in order to generate your required reports. After going through this section, hopefully you will understand the template syntax, composing expressions and other C# syntax supported programming elements. Additionally, we’ll also discuss how GroupDocs.Assembly engine reads the syntax, evaluates the expressions to populate with assigned data and then generates your desired report according to your business needs....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/net/working-with-gr...
  6. GroupDocs.Metadata for Python via .NET | GroupDocs

    Develop Applications to Create, View, Access, Update, Delete, Search, Compare, Replace & Export Metadata of Popular Documents & Image Formats....Viewer Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/python-net/
  7. Work with Word Track Changes | GroupDocs

    Learn how to compare Word Documents while respecting Track Changes using GroupDocs.Comparison for Python via .NET....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/python-net/word-t...
  8. Index Browser | GroupDocs

    Index Browser is a .NET application for managing indexes created using the GroupDocs.Search library...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/index-browser/
  9. Index Browser | GroupDocs

    Index Browser is a .NET application for managing indexes created using the GroupDocs.Search library...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/index-browser/
  10. Getting known property descriptors | GroupDocs

    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 try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

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