Sort Score
Result 10 results
Languages All
Labels All
Results 5,801 - 5,810 of 11,193 for

document merger

(0.07 sec)
  1. Text search in network | Documentation

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

    docs.groupdocs.com/search/java/text-search-in-n...
  2. 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....Merger Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/how-to-check-if-f...
  3. 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....Merger Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/groupdocs-metad...
  4. Remove Password Protection form PDF | Unlock PDF

    Remove password from PDF files. Unlock password protected PDF Documents using free online password remover app & programmatically.... I hope your documents are now in safe hands. Today...remove passwords to unlock PDF documents programmatically. Unlock PDF...

    blog.groupdocs.com/merger/unlock-pdf-files-online/
  5. 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....Merger Product Family GroupDocs.Redaction...When you need to view the document’s contents in a web browser...

    kb.groupdocs.com/conversion/java/how-to-convert...
  6. 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....Merger Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-to...
  7. 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....Merger Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/groupdocs-search-...
  8. 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....Merger Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/groupdocs-meta...
  9. How to Convert RTF to TXT using C#

    We will demonstrate how to convert RTF to TXT using C# without the need of third-party software. Moreover, we will provide code example to export RTF to TXT in C#....Merger Product Family GroupDocs.Redaction...installing the recommended document conversion library and making...

    kb.groupdocs.com/conversion/net/how-to-convert-...
  10. 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()); // ....Merger Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

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