Sort Score
Result 10 results
Languages All
Labels All
Results 7,721 - 7,730 of 17,074 for

document annotation

(0.34 sec)
  1. asp.net mvc - cannot access a closed stream: gr...

    Collectives™ on Stack Overflow Find centralized, trusted content and collaborate around the technologies you use most......of the documents, but not working with very few documents, what...issue here? asp.net-mvc annotations groupdocs Follow asked Oct...

    stackoverflow.com/questions/64605197/cannot-acc...
  2. GroupDocs.Viewer for .NET 20.12 Release Notes |...

    Features, improvements, and bugs-fixes that are shipped in GroupDocs.Viewer for .NET 20.12...Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/groupdocs-viewer-...
  3. Search for embedded object with custom serializ...

     This article explains how to search for embedded electronic signatures with custom serialization in QR-code electronic signatures. This topic contains example of custom serialization, class definition and search for serialized objects in the QR-codes with GroupDocs.Signature....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/search-embed-...
  4. Numeric range search | Documentation

    This article gives the knowledge about numeric range search which allows you to search in Documents any integer numbers in the range from 0 to 9223372036854775807 (Int64.MaxValue) using Java search API....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/numeric-range-se...
  5. GroupDocs.Comparison for .NET 18.10 Release Not...

    Note This page contains release notes for GroupDocs.Comparison for .NET 18.10 Major Features Below the list of most notable changes in release of GroupDocs.Comparison for .NET 18.10: Improved tables comparison for Slides Fixed issue with comparing tables with different styles Fixed comparing styles of the first column of the table Fixed issue with incorrect size of result Slides Documents Full List of Issues Covering all Changes in this Release Key Summary Issue Type COMPARISONNET-1725 Improve TableFormatSetter for Slides Improvement COMPARISONNET-1727 Slides table does not display text style change Bug COMPARISONNET-1726 Slides: issue with table theme Bug COMPARISONNET-1724 Slides: issue when comparing styles in first column Bug COMPARISONNET-1723 Slides: issue with a sizes of result Document Bug Public API and Backward Incompatible Changes Note This section lists public API changes that were introduced in GroupDocs....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/groupdocs-com...
  6. GroupDocs.Comparison for .NET 21.4 Release Note...

    Note This page contains release notes for GroupDocs.Comparison for .NET 21.4 Major Features Below is the list of most notable changes in release of GroupDocs.Comparison for .NET 21.4: Implemented сomparison of values from string variables Improved creation of empty lines in result Document Improved display of charts in Excel format Improved informativeness of error messages in PDF format Fixed and improved Header/Footer component comparison Fixed and improved lists handling Full List of Issues Covering all Changes in this Release Key Summary Issue Type COMPARISONNET-2667 Compare input strings Feature COMPARISONJAVA-895 Spreadsheet Comparison output is not as expected Improvement COMPARISONNET-2659 Improve creating of gap lines Improvement COMPARISONNET-2664 Reviewed and fixed tests for different platforms Improvement COMPARISONNET-2651 Lots of changes for deletion of HeaderFooter Bug COMPARISONNET-2655 Comparison issue in Word Documents with numbered list Bug COMPARISONNET-2686 Exception throws when try to compare file with itself without licensing Bug COMPARISONNET-2687 Error about memory leaking is shown for any error Bug Public API and Backward Incompatible Changes Learn more about сomparison of values from string variables can be found here....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/net/groupdocs-com...
  7. Specify rendering options for CAD files | Docum...

    This topic describes how to use the GroupDocs.Viewer Java API to specify various options for rendering CAD files to HTML, PDF, PNG, and JPEG....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/specify-cad-rend...
  8. Template Syntax - Part 1 of 2 | Documentation

    Note This article is the first part of the Template Syntax series of articles. For second part, please visit Template Syntax - Part 2 of 2. Composing Template A typical template for GroupDocs.Assembly Engine is composed of common Document contents and tags that describe the template’s structure and data bindings. You can form these tags using just running text that can occupy multiple paragraphs to be more descriptive. A tag body must meet the following requirements:...Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/java/template-synta...
  9. 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 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....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/getting-known-...
  10. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Annotation Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-m...