Sort Score
Result 10 results
Languages All
Labels All
Results 671 - 680 of 6,703 for

groupdocs pptx viewer

(0.05 sec)
  1. Wildcard search | Documentation

    This article shows the operations of wildcard search which allows you to search for words with unknown letters or ranges of letters....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/nodejs-java/wildcard-...
  2. Search for different word forms | Documentation

    This article shows that how to allow you to search for nouns in the singular or plural, adjectives in the degree of comparison, forms of regular and irregular verbs, etc....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/nodejs-java/search-fo...
  3. Delete indexed paths | Documentation

    Groupdocs.Search for Node.js supports the ability to remove indexed files and folders from an index. Only files or folders that were explicitly added to the index can be deleted....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/nodejs-java/delete-in...
  4. Get supported file formats | Documentation

    This article shows how to check supported file formats....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/java/get-supported-fi...
  5. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata Groupdocs....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. 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....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/getting-known-...
  7. Extract text from HTML documents | Documentation

    To extract a text from HTML documents GetText method is used. This method allows to extract a text from the entire document. Pagination and raw mode is not supported for emails....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/net/extract-text-from...
  8. HTML | Documentation

    This article explains that how to extract HTML 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/html/
  9. Get document info | Documentation

    This article shows how to get the basic document info....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/java/get-document-info/
  10. Loading specific file formats | Documentation

    In some cases it’s required to specify the document format manually to guarantee correct output produced by Groupdocs.Parser. The following are the cases when the document format must be specified manually: Markdown documents MHTML documents OTP documents (OpenDocument Presentation Template) Databases Emails from remote servers Here are the steps to specify the document format for Markup document. Instantiate the LoadOptions object and pass the document format in LoadOptions(FileFormat) constructor; Create Parser object and call any method....Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/java/loading-specific...