Sort Score
Result 10 results
Languages All
Labels All
Results 8,411 - 8,420 of 11,075 for

document assembly

(0.06 sec)
  1. GroupDocs.Parser for .NET 22.11 Release Notes |...

    Note This page contains release notes for GroupDocs.Parser for .NET 22.11 Full List of Issues Covering all Changes in this Release Key Summary Category PARSERNET-1961 Implement the ability to use OCR for images and PDF Documents New Feature PARSERNET-1935 Document info has 0 pages during reading JPEG file content Bug Public API and Backward Incompatible Changes Implement the ability to use OCR for images and PDF Documents Description This feature provides the ability to extract a text and text areas using OCR....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/groupdocs-parser-...
  2. GroupDocs.Metadata for .NET 20.7 Release Notes ...

    Note This page contains release notes for GroupDocs.Metadata for .NET 20.7 Major Features There are the following features, enhancements and fixes in this release: Implement the ability to work with EXIF metadata in JPEG2000 images Add support for the HEIF/HEIC format Implement the ability to extract metadata from encrypted MS Project files Implement the ability to manage custom properties in Project files. Add support for additional built-in properties Full List of Issues Covering all Changes in this Release Key Summary Category METADATANET-2845 Implement the ability to work with EXIF metadata in JPEG2000 images New Feature METADATANET-3387 Add support for the HEIF/HEIC format New Feature METADATANET-2843 Implement the ability to extract metadata from encrypted MS Project files Improvement METADATANET-1479 Implement the ability to manage custom properties in Project files....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/groupdocs-metad...
  3. Text search in network | Documentation

    This page contains information about full-text searching in the search network....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/text-search-in-n...
  4. Check if a file is encrypted | Documentation

    This article explains how to check if a file is encrypted using .NET / C# with GroupDocs.Viewer for .NET....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/how-to-check-if-f...
  5. Working with TORRENT files | Documentation

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-to...
  6. GroupDocs.Search for .NET 17.08 Release Notes |...

    Note This page contains release notes for GroupDocs.Search for .NET 17.8 Major Features There are 11 features and enhancements in this regular monthly release. The most notable are: SEARCHNET-1146 Fix all arguments classes according to best practices SEARCHNET-1091 Remove obsolete SimilarityLevel property from SearchParameters SEARCHNET-474 Implement accent-insensitive indexing SEARCHNET-576 Add FileIndexing event for selecting custom indexing strategy for separate Document SEARCHNET-1092 Implement option for the spelling corrector ‘Only best results’ SEARCHNET-1096 Implement option for the fuzzy search ‘Only best results’ SEARCHNET-1098 Implement Limit for Searching Report SEARCHNET-1099 Implement Limit for Indexing Report SEARCHNET-1129 Implement method that generates text with highlighted search results SEARCHNET-1135 Implement indexing ZIP archives SEARCHNET-1148 Add StatusChanged event to Index class All Changes Key Summary Category SEARCHNET-1146 Fix all arguments classes according to best practices Breaking Change SEARCHNET-1091 Remove obsolete SimilarityLevel property from SearchParameters Enhancement SEARCHNET-474 Implement accent-insensitive indexing New Feature SEARCHNET-576 Add FileIndexing event for selecting custom indexing strategy for separate Document New Feature SEARCHNET-1092 Implement option for the spelling corrector ‘Only best results’ New Feature SEARCHNET-1096 Implement option for the fuzzy search ‘Only best results’ New Feature SEARCHNET-1098 Implement Limit for Searching Report New Feature SEARCHNET-1099 Implement Limit for Indexing Report New Feature SEARCHNET-1129 Implement method that generates text with highlighted search results New Feature SEARCHNET-1135 Implement indexing ZIP archives New Feature SEARCHNET-1148 Add StatusChanged event to Index class New Feature Public API and Backward Incompatible Changes Note This section lists public API changes that were introduced in GroupDocs....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/groupdocs-search-...
  7. GroupDocs.Metadata for Java 20.7 Release Notes ...

    Note This page contains release notes for GroupDocs.Metadata for Java 20.7 Major Features There are the following features, enhancements and fixes in this release: Implement the ability to work with EXIF metadata in JPEG2000 images Add support for the HEIF/HEIC format Implement the ability to extract metadata from encrypted MS Project files Implement the ability to manage custom properties in Project files. Add support for additional built-in properties Full List of Issues Covering all Changes in this Release Key Summary Category METADATANET-2845 Implement the ability to work with EXIF metadata in JPEG2000 images New Feature METADATANET-3387 Add support for the HEIF/HEIC format New Feature METADATANET-2843 Implement the ability to extract metadata from encrypted MS Project files Improvement METADATANET-1479 Implement the ability to manage custom properties in Project files....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/groupdocs-meta...
  8. Encoding.GetChars Method (System.Text) | Micros...

    When overridden in a derived class, decodes a sequence of bytes into a set of characters....Text Assembly: System.Text.Encoding.dll Assembly: System.Runtime...Runtime.dll Assembly: mscorlib.dll Assembly: netstandard.dll...

    learn.microsoft.com/en-us/dotnet/api/system.tex...
  9. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-c...
  10. Enumerable.Average Method (System.Linq) | Micro...

    Computes the average of a sequence of numeric values....Linq Assembly: System.Linq.dll Assembly: System.Core...Core.dll Assembly: netstandard.dll Important Some information relates...

    learn.microsoft.com/en-us/dotnet/api/system.lin...