我建议首先在解决方案中使用它:
using System;using System.Collections.Generic;using System.linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using Microsoft.Office.Interop.Word;public partial class Default2 : System.Web.UI.Page{ protected voID Page_Load(object sender,EventArgs e) { Microsoft.Office.Interop.Word.Application appWord = new Microsoft.Office.Interop.Word.Application(); worddocument = appWord.documents.Open(@"D:\desktop\xxxxxx.docx"); worddocument.ExportAsFixedFormat(@"D:\desktop\DocTo.pdf",WdExportFormat.wdExportFormatpdf); } public Microsoft.Office.Interop.Word.document worddocument { get; set; }}总结
以上是内存溢出为你收集整理的如何在C#中将.docx转换为.pdf全部内容,希望文章能够帮你解决如何在C#中将.docx转换为.pdf所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)