Sort Score
Result 10 results
Languages All
Labels All
Results 1,431 - 1,440 of 6,331 for

xls

(0.03 sec)
  1. Image search in network | Documentation

    This page contains information about reverse image search in the search network....your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free...

    docs.groupdocs.com/search/java/image-search-in-...
  2. Case sensitive search | Documentation

    This article gives the knowledge of the case sensitive search which allows you to find words considering uppercase and lowercase letters as distinct using Java....your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free...

    docs.groupdocs.com/search/nodejs-java/case-sens...
  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....your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free...

    docs.groupdocs.com/search/nodejs-java/delete-in...
  4. Alphabet | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about Alphabets using Java....your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free...

    docs.groupdocs.com/search/java/alphabet/
  5. Tags

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....combine spreadsheets 2 combine xls 2 compact indexing 1 compact...HTML 1 Convert XLS and CSV in C# 1 Convert XLS and CSV in Java...

    blog.groupdocs.com/tags/
  6. How to Convert Excel to CSV in Java

    This post covers basic document conversion and contains detailed instructions on how to convert Excel to CSV in Java along with Java code to convert Excel to CSV....following Spreadsheet formats: XLS, XLSX, XLSM, XLSB, ODS, OTS,...

    kb.groupdocs.com/conversion/java/how-to-convert...
  7. Introducing Outlook Metadata Cleaner - An Outlo...

    Outlook Metadata Cleaner is an Outlook add-in powered by GroupDocs.Metadata for .NET that removes/cleans metadata properties in the files selected to be attached with email. It is an attach file button that appears in New Message window in Outlook. When some file is selected to be attached with email, the add-in first cleans all the metadata information saved with that file and then attaches metadata free file with email message....(DOC/DOCX) Spreadsheet Document (XLS/XLSX) Portable Document Format...

    blog.groupdocs.com/metadata/introducing-outlook...
  8. HTML | Documentation

    This article explains that how to extract HTML formatted text from document page in Java....from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our...

    docs.groupdocs.com/parser/java/html/
  9. 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....of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. 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....of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more...

    docs.groupdocs.com/metadata/java/getting-known-...