Sort Score
Result 10 results
Languages All
Labels All
Results 1,291 - 1,300 of 12,026 for

docx comparison

(0.04 sec)
  1. Render documents | Documentation

    Rendering documents with GroupDocs.Viewer for .NET in your .NET / C# applications....Comparison Product Solution GroupDocs...For example, if you have a .docx file with three pages, converting...

    docs.groupdocs.com/viewer/net/rendering-documents/
  2. Optimizing shards | Documentation

    This page contains information about optimizing shards in the search network....Comparison Product Solution GroupDocs...to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...

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

    This article shows that how search thread safety works....Comparison Product Solution GroupDocs...to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...

    docs.groupdocs.com/search/nodejs-java/search-th...
  4. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook....Comparison Product Solution GroupDocs...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/net/exporting-metad...
  5. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook in Java...Comparison Product Solution GroupDocs...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/java/exporting-meta...
  6. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Comparison Product Solution GroupDocs...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/java/get-supported-...
  7. Load document from url | Documentation

    Learn how to Load document from url....Comparison Product Solution GroupDocs...extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...

    docs.groupdocs.com/parser/net/load-document-fro...
  8. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....Comparison Product Solution GroupDocs...and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  9. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document....Comparison Product Solution GroupDocs...document. Ex: @"C:\Docs\source.docx" using ( var metadata = new...

    docs.groupdocs.com/metadata/net/load-a-password...
  10. Render to PDF | Documentation

    Rendering files to PDF with GroupDocs.Viewer for Java. It means that you can embed PDF in websites or applications by using this Java API...Comparison Product Solution GroupDocs...snippet shows how to render a .docx document to PDF: Java import...

    docs.groupdocs.com/viewer/java/rendering-to-pdf/