Sort Score
Result 10 results
Languages All
Labels All
Results 2,611 - 2,620 of 10,012 for

text

(0.08 sec)
  1. Supported file formats | Documentation

    This topic lists file formats supported by GroupDocs.Viewer for .NET.... Text and programming file formats...Query Language Data File Plain Text File Visual Basic Source Code...

    docs.groupdocs.com/viewer/net/supported-documen...
  2. Convert TXT to ODT using Node.js

    Convert TXT to ODT using Node.js for fast and accurate document transformation. This guide also shows the steps of how to export TXT to ODT in Node.js with ease....Begin by loading your plain text file using the Converter class...Following code ensures that your text content is accurately transferred...

    kb.groupdocs.com/conversion/nodejs/convert-txt-...
  3. Locking watermark in word processing document |...

    This article explains how to lock the watermarks in a Word document to restrict the editing in Java....new TextWatermark ( "Watermark text" , new Font ( "Arial" , 19 ));...new TextWatermark ( "Watermark text" , new Font ( "Arial" , 19 ));...

    docs.groupdocs.com/watermark/java/locking-water...
  4. Sign document with Barcode signature - advanced...

     This article explains how to sign document with Barcode electronic signatures using extended options with GroupDocs.Signature API....try { // setup options with text of signature BarcodeSignOptions...setBorder ( border ); // set text color and Font signOptions ...

    docs.groupdocs.com/signature/java/sign-document...
  5. Adding a watermark alters the original word doc...

    Hello, We’re trying to add watermark in Word documents using the Java module groupdocs-watermark. Watermarks are being added succesfully, but they alter the original document (blank spaces/lines or modifying Text align…...(blank spaces/lines or modifying text alignment). This is blocking...: one line of “RANDOM TEXT RANDOM TEXT” is left-aligned instead...

    forum.groupdocs.com/t/adding-a-watermark-alters...
  6. Export styles during document editing | Documen...

    This article describes the procedure of preserving and exporting all build-in and custom styles in the source WordProcessing document during its editing....can be applied to some span of text, paragraphs, lists, or tables...tab; users can select a desired text or paragraph of the document...

    docs.groupdocs.com/editor/java/styles-export/
  7. Supported Document Formats | Documentation

    It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, PDF, PPT, JPG, PNG, HTML, EML and many more...metadata Plain text Content and metadata Open Document Text Content...Document Text Template Content and metadata Rich Text Format Content...

    docs.groupdocs.com/search/java/supported-docume...
  8. 在 ASP.NET Core MVC 中为 140 多种文件格式创建文档查看器

    在线文档查看器在越来越多地使用数字文档后变得流行起来,尤其是在内容管理系统中。这种流行背后的原因是您无需购买或安装专用软件程序即可查看各种文档格式。考虑到文档查看器的重要性,我想写一篇关于如何在 ASP.NET MVC 中创建通用文档查看器的文章。 我们将创建一个针对 .NET Core 框架。对于后端的文档呈现,我们将使用 GroupDocs.Viewer for .NET API - 一个强大的文档查看器 API它支持 140 多种文档类型,包括 PDF、Word、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"; }