在VS中添加DevExpress Document Server

如何在Visual Studio中添加无界面的.Net文档处理库DevExpress Document Server在中的电子表格服务器。

操作方法

  • 01

    打开Visual Studio,然后通过选择FILE-New-Project…,创建一个新的Windows Forms Application项目。

  • 02

    添加以下库为引用:DevExpress.Data.v13.1.dll、 DevExpress.Docs.v13.1.dll、 DevExpress.Office.v13.1.Core.dll、 DevExpress.Spreadsheet.v13.1.Core.dll和DevExpress.Utils.v13.1.dll。

  • 03

    其实集成步骤在上一部已经完成了,接下来用个小例子为大家展示下简单的功能。使用以下代码: using DevExpress.Spreadsheet; // ... // Create an instance of a workbook. Workbook workbook = new DevExpress.Spreadsheet.Workbook(); // Access the first worksheet in the workbook. Worksheet worksheet = workbook.Worksheets[0]; // Access the "A1" cell in the worksheet. Cell cell = worksheet.Cells["A1"]; // Specify the "A1" cell value. cell.Value = 1; // Fill cells with sequential numbers by using shared formulas. worksheet.Range["A2:A10"].Formula = "=SUM(A1+1)"; worksheet.Range["B1:B10"].Formula = "=A1+2"; // Multiply values contained in the cell range A1 through A10 // by the corresponding values contained in B1 through B10, // and display the results in cells C1 through C10. worksheet.Cells["C1"].CreateArrayFormula("=A1:A10*B1:B10", 10, 1); // Save the document file under the specified name. workbook.SaveDocument("TestDoc.xlsx", DocumentFormat.OpenXml); // Display gridlines in PDF. worksheet.PrintOptions.PrintGridlines = true; // Export the document to PDF. workbook.ExportToPdf("TestDoc.pdf"); // Open the PDF document using the default viewer.. System.Diagnostics.Process.Start("TestDoc.pdf"); // Open the XLSX document using the default application. System.Diagnostics.Process.Start("TestDoc.xlsx");

  • 04

    运行项目,下图就是执行了以上代码后生成的文件。

(0)

相关推荐

  • DevExpress Document Server访问Excel工作表

    方法/步骤 1可以参考以下代码: using DevExpress.Spreadsheet; // ... Workbook workbook = new Workbook(); // Access ...

  • DevExpress Document Server保存Excel文件

    文档操作组件DevExpress Document Server能够实现非可视化,全代码的对电子表格文件,如Excel等的保存,以下为具体方法. 要将加载到Workbook对象的内容保存到文档中,需要 ...

  • 如何在sql server中添加新的管理用户?

    相信很多小伙伴都有在使用sql server ,在其中如何才能添加新的管理用户呢?方法很简单,下面小编就来为大家介绍.具体如下:1. 首先,启动sql server 管理工具ssms.2. 接着,依次 ...

  • 如何在Windows Server 2008系统开始菜单中添加“计算机”选项?

    相信很多小伙伴都有在使用Windows Server 2008系统的电脑,在其中的开始菜单中如何才能添加"计算机"选项呢?方法很简单,下面小编就来为大家介绍.具体如下:1. 首先, ...

  • 怎么在windows server2012的桌面中添加图标

    当我们在使用windows server2012服务器计算机时,为了方便,我们可以添加桌面图标.接下来就由小编来告诉大家如何操作.具体如下:1.第一步,我们打开server服务器,就可以看到如下画面, ...

  • Java 在Word中添加数学公式(Latex/MathML)

    本文介绍通过Java程序在Word文档中添加数学公式的方法.添加时,可添加latex数学公式或者MathML数学公式.详细内容见下文. 1. 程序环境中 ● Word测试文档:.docx 2013 ● ...

  • 怎么在右键菜单中添加word、Excel.、powerpoint

    右键菜单中没有新建word.Excel..powerpoint怎么办,作者朝夕相处58教你怎么在右键菜单中添加word.Excel..powerpoint 添加word 01 把横线中的信息复制的记事 ...

  • 在MyEclipse中添加Tomcat服务器

    为了使用JAVA WEB程序发布更加方便,小编为你介绍如何在MyEclipse中添加Tomcat服务器,这样你只需要在MyEclipse做个简单操作可以发布JAVA WEB程序 操作方法 01 首先安 ...

  • 图解Eclipse中找不到Server选项的解决方法

    Eclipse是是一个开放源代码的.基于Java的可扩展开发平台.就其本身而言,它只是一个框架和一组服务,用于通过插件组件构建开发环境. 它使用频率十分高,然而当使用它配置weblogic的时候,经常 ...