Sort Score
Result 10 results
Languages All
Labels All
Results 2,001 - 2,010 of 2,107 for

word to pdf

(0.05 sec)
  1. Working with metadata in Presentations | Docume...

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer To Supported document formats. Detecting the exact type of a presentation The following sample of code will help you To detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root metadata package Use the getPresentationType method To obtain file format information advanced_usage.... It can be an estimated word count, page count, character...to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Releasing GroupDocs.Viewer for .NET 3.6.0 - New...

    We are inspired To see a wide number of users across the world using GroupDocs.Viewer API and their feedback always motivate us To make improvements and add support for more features. Therefore, Today, we are announcing another monthly release of GroupDocs.Viewer for .NET with 7 new features, 9 fixes, and 5 improvements. Let’s have an overview of the latest version. Document Viewer API - New FeaturesFollowing are the new features introduced in GroupDocs....default font when rendering Words documents LaTeX file format...GroupDocsException Convert .docx to .pdf wrong symbol Missing character...

    blog.groupdocs.com/viewer/releasing-groupdocs-v...
  3. Introducing ASP.NET WebForms Document Metadata ...

    GroupDocs team is pleased To announce first release of ASP.NET WebForms Document Metadata EdiTor App using GroupDocs.Metadata for .NET API This initial release v1.0.0 comes up with features To provide easy ways To manage metadata in various formats. It enables user To read and remove the metadata of documents (Words, Spreadsheet, Presentation, Pdf) and images (JPEG, PNG, GIF) with download the original or updated document and many more features. We recommend you To download and explore this version....documents (Words, Spreadsheet, Presentation, PDF) and images...this version v1.0.0 . View Words document Metadata information...

    blog.groupdocs.com/metadata/introducing-asp.net...
  4. Document filtering during indexing | Documentation

    This page contains a description of the use of document filters for indexing, as well as descriptions of all types of filters with examples of their creation....files that do not contain the word 'Einstein' in their paths DocumentFilter...welcome to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/search/java/document-filteri...
  5. Working with metadata in WordProcessing documen...

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of WordProcessing documents such as DOC, DOCX, ODT, 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 document and extract some additional file format information. Load a WordProcessing document Extract the root metadata package Use the FileType property To obtain file format information AdvancedUsage.... It can be an estimated word count, page count, character...to view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Search Optical Signatures using Java E-Signing ...

    We are delighted To announce the another monthly release of GroupDocs.Signature for Java v18.4. This release comes up with many features like searching QRCode and Barcode signatures in supported documents. Aside this, few improvements and fixes are also introduced in this version of the API. We would recommend you To download the new version of API and evaluate the exciting features To enhance document e-signing experience. eSignature API for Java v18....following documents: # PDF Cells Slides Words Image Following code...search Barcode signature in the PDF document: PdfSearchBarcodeOpti...

    blog.groupdocs.com/signature/java-e-signing-api...
  7. Getting Document Information | Documentation

    Learn how To retrieve document metadata such as file type, page count, size, and other properties with GroupDocs.Conversion for Python via .NET.... Example 2: Get PDF Document Info get_pdf_document_info.py from...conversion import Converter def get_pdf_document_info (): # Load the...

    docs.groupdocs.com/conversion/python-net/develo...
  8. 在 ASP.NET Core MVC 中为 140 多种文件格式创建文档查看器

    在线文档查看器在越来越多地使用数字文档后变得流行起来,尤其是在内容管理系统中。这种流行背后的原因是您无需购买或安装专用软件程序即可查看各种文档格式。考虑到文档查看器的重要性,我想写一篇关于如何在 ASP.NET MVC 中创建通用文档查看器的文章。 我们将创建一个针对 .NET Core 框架。对于后端的文档呈现,我们将使用 GroupDocs.Viewer for .NET API - 一个强大的文档查看器 API它支持 140 多种文档类型,包括 PdfWord、Excel、PowerPoint、Visio、CAD、Outlook 和许多其他流行的格式。 为什么选择 .NET Core? .NET Core 是 Microsoft 对 .NET 生态系统的重要补充。它使开发跨平台应用程序成为可能,而无需开发人员进行任何额外的努力。这就是我选择 .NET Core 作为目标框架的原因。 在 ASP.NET Core 中创建文档查看器的步骤 1. 打开 Visual Studio 并启动一个新项目。 2. 从项目类型中选择 .NET Core,从模板中选择 ASP.NET Core Web Application。 3. 选择 Web Application (Model-View-Controller) 并点击 Ok 按钮。 4. 从 NuGet 安装 GroupDocs.Viewer。 5. 打开 Views/Home/Index.cshtml 文件并将其内容替换为以下内容: @{ ViewData["Title"] = "Home Page"; }