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

view file

(0.04 sec)
  1. Process the Microsoft Outlook Email Attachments...

    An ‘attachment’ is a File such as a document or a photo that is attached to an email. It’s easy to attach pictures, Files, contacts, emails and many other items to your Outlook messages. If you selected a File on your local computer or group document library for the attachment purpose, a copy of the File is attached to the email. The case: A software developer is making a document Viewing application....An ‘attachment’ is a file such as a document or a photo that...It’s easy to attach pictures, files, contacts, emails and many other...

    blog.groupdocs.com/viewer/process-microsoft-out...
  2. How to Render DOCX as PNG using C#

    In this article, we will guide you on how to render DOCX as PNG using C# without installing extra software. We will also provide code to render DOCX to PNG using C#....a Portable Network Graphics file can be a valuable skill when...rendering DOCX pages in PNG files Create the Viewer class object...

    kb.groupdocs.com/viewer/net/how-to-render-docx-...
  3. Online Document Viewer from GroupDocs: How It W...

    The technology research firm Gartner states that the demand for SaaS (Software as a Service) products will continue to grow in a recent report (February, 2013). The report highlights that some of the top segments for the SaaS market will be: Office suites, IT operations management and storage management. Corporates understand the need to stay abreast technology trends and are taking the necessary steps to move towards cloud or web-based document management systems....sharing financial records, even viewing X-rays and displaying reports...and all kinds of files. They need to share, view, and read large...

    blog.groupdocs.com/viewer/online-document-viewe...
  4. Adjust the JPEG image quality | Documentation

    Following this guide you will learn how to adjust JPG images quality when rendering documents with Image Viewer by GroupDocs....reduces the size of the output file. To adjust images quality, set..."sample.docx" )) { // Create a JPG file. JpgViewOptions viewOptions...

    docs.groupdocs.com/viewer/net/image-viewer-adju...
  5. How to run examples | Documentation

    You can build a project from scratch using Visual Studio .NET CLI. We will step you through both cases.... View ( options ); } VB.NET Imports...outputFilePathFormat ) viewer . View ( options ) End Using End Sub...

    docs.groupdocs.com/viewer/net/how-to-run-examples/
  6. SugarCRM Plugin Tutorial Using GroupDocs Viewer...

    GroupDocs offers a full set of document management tools for SugarCRM: we’ve developed a bunch of plugins which help you use Viewer, Annotation, Assembly, Comparison and Signature apps in SugarCRM. This article gives some recommendations on how to create your own custom plugin for SugarCRM. We will use the GroupDocs Viewer plugin for SugarCRM as an example. SugarCRM is an open-platform web-based CRM solution which has an on-demand cloud platform. Today we show you how to create an on-site version plugin....Also make sure that your plugin file starts with the following: /\*\*\*\*\...create a manifest.php file. This file will contain all information...

    blog.groupdocs.com/total/sugarcrm-plugin-tutori...
  7. Metadata Editor Powered by GroupDocs.Metadata f...

    Are you looking for some metadata editing tool to manipulate your Files? Your search is over as the Metadata Editor powered by GroupDocs.Metadata for .NET is out and available now. Metadata Editor is a desktop application that demonstrates how to View and update the metadata information attached with the supported File formats using GroupDocs.Metadata for .NET API. Let’s download and give it a try. .NET Metadata Editor - FeaturesFollowing are the basic features exposed by the ....editing tool to manipulate your files? Your search is over as the...application that demonstrates how to view and update the metadata information...

    blog.groupdocs.com/metadata/metadata-editor-pow...
  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"; }