众所周知,Word是我们日常工作中常用的办公软件之一,有时出于某种需求我们需要将Word文档转换为PDF以及Text.那么如何以C#,VB.NET编程的方式来实现这一功能呢? 下面我将分开介绍如何运用免费版的Spire.Doc for .NET组件来实现Word到PDF以及Text的转换. Free Spire.Doc for .NET组件概述 Free Spire.Doc for .NET 是Spire.Doc for .NET的免费版,它是一款完全免费且可供商业和个人使用的Word组件.通过…
//Load Document Document document = new Document(@"C:\Users\Administrator\Desktop\人事---新员工转正总结(1) - 副本.doc"); //Convert Word to PDF document.Save(@"C:\Users\Administrator\Desktop\人事---新员工转正总结(1) - 副本.pdf");…
下面代码是Excel转换为PDF using System; using System.Collections.Generic; using System.Linq; using System.Web; using ms = Microsoft.Office.Interop.Excel; public class Excel2Pdf { public static void ToPdf(string excelName, string pdfName) { ms.Application app…