Sort Score
Result 10 results
Languages All
Labels All
Results 1,441 - 1,450 of 5,497 for

xlsx

(0.06 sec)
  1. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....xlsx" try ( Metadata metadata = new... DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with...

    docs.groupdocs.com/metadata/java/get-document-i...
  2. Working with metadata in Spreadsheets | Documen...

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of spreadsheet formats such as XLS, Xlsx, ODS, etc. For the full list of supported document formats please refer to Supported Document Formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded spreadsheet and extract some additional file format information. Load a Spreadsheet document Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage....spreadsheet formats such as XLS, XLSX, ODS, etc. For the full list... DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. View MPP Files Created in MS Project 2019 using...

    Hello everyone! We have recently released version 19.9 of GroupDocs.Viewer for .NET with the support of new file formats as well as a number of bug fixes. So in this post, I am going to write about what is new in this release particularly for those who are interested in viewing Microsoft Project files (.mpp) using .NET API. Microsoft Project is a famous project management software that is proved to be helpful for the managers as well as the other stakeholders in making, organizing, tracking and analyzing their project plans....are embedded when rendering XLSX into HTML with external resources...

    blog.groupdocs.com/viewer/view-mpp-files-of-ms-...
  4. Convenient Watermarking for Documents and Image...

    We are excited to announce that the first version of GroupDocs.Watermark for Java has been released. GroupDocs.Watermark for Java makes it simple to perform watermarking operations in various document and image formats. The API facilitates the Java developers with simple syntax, easy to use methods and a few lines of code to perform any watermarking operation. Using GroupDocs.Watermark, you can add, search, and remove watermark from many popular document and image formats....docm, dotm, rtf) Excel (xls, xlsx, xlt, xltx, xlsm, xltm) PowerPoint...

    blog.groupdocs.com/watermark/introducing-groupd...
  5. Announcing GroupDocs Online Document Viewer Mod...

    Great news for all ExpressionEngine CMS users! We’ve released an efficient GroupDocs Viewer module for ExpressionEngine CMS. This plugin allows you to embed GroupDocs’ high-fidelity online document viewer together with selected documents to ExpressionEngine pages. As GroupDocs’ online document viewer supports many different formats, visitors to ExpressionEngine websites can now effortlessly view documents of multiple formats online. [caption id=“attachment_1047” align=“alignnone” width=“600” caption=“Announcing GroupDocs’ online document viewer module for ExpressionEngine”] [/caption] GroupDocs Viewer is an efficient and flexible online document viewer....PPTX) Spreadsheet viewer (XLS, XLSX) Image file viewer (JPG, BMP...

    blog.groupdocs.com/viewer/announcing-groupdocs-...
  6. 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.... DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free...

    docs.groupdocs.com/parser/net/extract-text-from...
  7. Get supported file formats | Documentation

    This article shows how to check supported file formats.... DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free...

    docs.groupdocs.com/parser/java/get-supported-fi...
  8. HTML | Documentation

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

    docs.groupdocs.com/parser/java/html/
  9. GroupDocs.Conversion for Python via .NET | Docu...

    GroupDocs.Conversion for Python via .NET is a document conversion API that enables easy conversion of popular file formats, including DOCX, Xlsx, PPTX, PDF, CAD drawings, and many more....file formats, including DOCX, XLSX, PPTX, PDF, CAD drawings, and...

    docs.groupdocs.com/conversion/python-net/
  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.... DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with...

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