Sort Score
Result 10 results
Languages All
Labels All
Results 5,841 - 5,850 of 8,784 for

paged

(0.12 sec)
  1. Merge Excel Files and Spreadsheets using C# | C...

    Combine Excel spreadsheet files using C#. Merge specific sheets of XLS/XLSX files using .NET merger API by GroupDocs....certain pages, and removing, swapping, or extracting pages from...

    blog.groupdocs.com/merger/merge-excel-files-and...
  2. GroupDocs.Parser pour .NET 25.12 – Dernières mi...

    Explorez les nouveautés de GroupDocs.Parser pour .NET 25.12. Disponible dès maintenant sur NuGet et le site Web de GroupDocs....fournir un modèle de mise en page. [Enhancement] Implémenter l’extraction...Framework sont disponibles sur la page de diffusion GroupDocs.Parser...

    blog.groupdocs.com/fr/parser/groupdocs-parser-f...
  3. Sign documents with standard QR Code entries | ...

    This article explains how to create QR-code electronic signature with standard encoded entries like Address, Email, V-Card, MeCard, EPC/SEPA, Event etc...entries Leave feedback On this page provides ability to embed into...QR Code SMS data on the PDF page. This could be used for automatic...

    docs.groupdocs.com/signature/net/sign-documents...
  4. Significant trouble installing, and now using G...

    Significant trouble installing, and now using GroupDocs At first, attempting `pip install groupdocs-viewer-net` was yielding an error that said no such file existed, despite me getting that command......is replaced with the current page number in the image name. viewOptions...HtmlViewOptions.for_embedded_resources("page_{0}.html") viewer.view(options)...

    forum.groupdocs.com/t/significant-trouble-insta...
  5. .NET에서 GroupDocs.Watermark로 워터마크 감사를 자동화

    오류가 발생하기 쉬운 수동 워터마크 검토를, GroupDocs.Watermark를 사용하여 워터마크를 스캔·검증·보고하는 짧은 .NET 스크립트로 대체하는 방법을 배웁니다....WriteLine( $" Page {wm.PageNumber}, " + $"Pos X={wm...perPage = wk.Search(txtCrit); var pages = new HashSet< int >(); foreach...

    blog.groupdocs.com/ko/watermark/audit-automatio...
  6. Working with metadata in Presentations | GroupDocs

    GroupDocs.Metadata for .NET 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 FileType property to obtain file format information AdvancedUsage....be an estimated word count, page count, character count, etc...with our free online . Was this page helpful? Not really Yes, thanks...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. After groupdocs.convertion updation in 25.2.1 x...

    it thorugh error like this Unhandled exception thrown while processing 26356a6d-4d91-431e-9537-37e54f06d5d8. Original exception message: Invalid left or right margin, Left margin in inch: 0.7875, Right margin in inch: 0…...conversion it show only empty page ? evgen.efimov March 5, 2025...we are not entirely sure what page dimensions you are trying to...

    forum.groupdocs.com/t/after-groupdocs-convertio...
  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"; }