Sort Score
Result 10 results
Languages All
Labels All
Results 771 - 780 of 6,703 for

groupdocs pptx viewer

(0.05 sec)
  1. Document renaming | Documentation

    Sometimes a situation arises when an indexed document is renamed, but its contents have not changed. In this case, to save computing resources, you can notify the index about the renaming of the document, and then the document will not be reindexed during the update operation. To notify an index about renaming a document, the notifyIndex method is used with the corresponding notification object as a parameter. You should keep in mind that if an index is notified of the renaming of a document, it will not be reindexed the next time you call the update method, even if its contents have changed....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/nodejs-java/document-...
  2. Search flow | Documentation

    This article shows the internal stages of each search operation....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/net/search-flow/
  3. Search thread safety | Documentation

    This article shows that how search thread safety works....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/java/search-thread-sa...
  4. Working with metadata in MOV Files | Documentation

    Reading MOV format-specific properties The Groupdocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using MovRootPackage.MovPackage Read the QuickTime atoms AdvancedUsage....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-me...
  5. Markdown | Documentation

    This article explains that how to extract Markdown formatted text from document page in Java....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/java/markdown/
  6. 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)....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/net/numeric-range-sea...
  7. Introducing GroupDocs.Parser for .NET | Documen...

    What Is Groupdocs.Parser? Groupdocs.Parser is a powerful document data extraction API from over 50 document types in your applications. Many popular formats are supported: PDF, DOC, DOCX, PPT, Pptx, XLS, XLSX, ODT, ODS, RTF, EPUB and many others. One of the most valuable features of Groupdocs.Parser is parsing documents with predefined templates. It’s easy to define template and extract data from invoices, prices or other kinds of your typical documents....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/net/introducing-group...
  8. Get file info | Documentation

    This article explains the ability of the Groupdocs.Redaction API to get the general document information, which includes FileType, PageCount and FileSize....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/redaction/python-net/get-fil...
  9. Get file info | Documentation

    This article explains the ability of the Groupdocs.Redaction API to get the general document information, which includes FileType, PageCount and FileSize....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/redaction/net/get-file-info/
  10. Extracting common image information | Documenta...

    For all supported image formats the Groupdocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/extracting-com...