Sort Score
Result 10 results
Languages All
Labels All
Results 191 - 200 of 707 for

locale

(0.34 sec)
  1. Loading files | GroupDocs

    The listed articles below explain how to load password-protected documents and load files from different sources....following guides: Load from a local disk Load from a stream Load...

    docs.groupdocs.com/metadata/net/loading-files/
  2. Introducing a More Optimized and Simplified Gro...

    It’s been quite long since we released the last version of GroupDocs.Watermark for .NET API. The reason behind this gap was to introduce a more simplified and optimized watermark manipulation API for the .NET platform. Today, I am excited to announce that the API v2 of GroupDocs.Watermark for .NET has been released as v19.10 and it is available for download. What’s new in the latest release? The major updates have been done at the architecture level of the API to simplify its usage....document information from the local file. Old API # New API # For...

    blog.groupdocs.com/watermark/net-api-to-add-sea...
  3. Working with Groupdocs Signature API from Ruby

    Today we will find out how to use GroupDocs’ Ruby SDK. We will create a GroupDocs Signature envelope sample with the Sinatra framework. GroupDocs Signature envelopes are used to prepare documents for digital signature and managing the signature process. Setting Up First, create the application folders structure: your_app/public – for CSS files. your_app/samples – for sample files. your_app/views – for view files, we will use Haml for these. Also we need to create a Gemfile in our project’s root directory with the following content: https://gist....) Now install a local bundle by typing this command...height='600'></iframe>" Add local vars for the view. haml :envelope\_sample...

    blog.groupdocs.com/signature/working-with-group...
  4. Alignment and font issues in the generated PDF ...

    We have a docx file in which Arial MT, Times New Roman fonts are used but upon conversion to pdf we see the following issues : everything is coming in Arial font and not Arial MT The header has correct font but it has …... Have you installed them locally, or are you simply trying to...recommend installing Windows fonts locally . As a reference, you can check...

    forum.groupdocs.com/t/alignment-and-font-issues...
  5. Convert files to various formats | GroupDocs

    This page explains how to convert a file to PDF, Word, Excel, PowerPoint, Email, JPG, PNG, TIFF, and many other formats with just a couple of lines of JavaScript code....a desired file path on the local disk or other storage. The common...

    docs.groupdocs.com/conversion/nodejs-java/convert/
  6. Convert files to various formats | GroupDocs

    This page explains how to convert a file to PDF, Word, Excel, PowerPoint, Email, JPG, PNG, TIFF, and many other formats with just a couple of lines of Java code....a desired file path on the local disk or other storage. The common...

    docs.groupdocs.com/conversion/java/convert/
  7. System Requirements | GroupDocs

    System requirements, supported platforms, and environment setup for GroupDocs.Conversion for Node.js via Java. No Microsoft Office or other third‑party software is required..../bin: $PATH " Fonts and Localization For accurate conversion...library works fully offline with local documents. Troubleshooting Setup...

    docs.groupdocs.com/conversion/nodejs-java/syste...
  8. แก้ไขเอกสาร Word ใน C# | สร้าง .NET Word Editor...

    การแก้ไขเอกสาร Word มีการอธิบายด้วยตัวอย่าง C# เพื่อแก้ไขไฟล์ DOC, DOCX, ODT ภายในแอปพลิเคชัน .NET ของคุณโดยใช้ API การแก้ไขเอกสาร...Locale = System.Globalization.CultureInfo...EnablePagination = true; saveOptions.Locale = System.Globalization.CultureInfo...

    blog.groupdocs.com/th/editor/edit-word-document...
  9. Work with Streams vs File Paths | GroupDocs

    Learn when and how to use streams versus file paths for template loading and document saving in .NET....File paths are simpler for local file system operations, while...paths: Use file paths for simple local file system operations Use streams...

    docs.groupdocs.com/assembly/net/basic-usage-str...
  10. Load from Stream | GroupDocs

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Stream As an alternative to a local file, Redactor can open a document...

    docs.groupdocs.com/redaction/java/load-from-str...