C#完成word文档打印的方法
程序员文章站
2022-03-10 14:28:55
在日常工作中,我们可能常常需要打印各种文件资料,比如word文档。对于编程员,应用程序中文档的打印是一项非常重要的功能,也一直是一个非常复杂的工作。特别是提到web打印,这...
在日常工作中,我们可能常常需要打印各种文件资料,比如word文档。对于编程员,应用程序中文档的打印是一项非常重要的功能,也一直是一个非常复杂的工作。特别是提到web打印,这的确会很棘手。一般如果要想选择非默认打印机或者说想显示打印设置对话框时,我们也需要对代码进行一定的设置。
针对这样的问题,今天这篇文章我就来分享一下如何利用免费的第三方组件轻松打印word文档。免费组件简化了代码,提高我们的工作效率,何乐而不为呢。所以,在下面的示例中我使用了其中一个free spire.doc组件来实现这一功能。
c#完成word文档打印的方法步骤如下所示:
这是原来的word文档截图:
第一步:组件安装后,创建一个c#控制台项目,添加引用及命名空间如下:
using system; using spire.doc; using system.windows.forms;
第二步:实例化一个word文档对象,调用loadfromfile方法加载待打印的word文档:
document doc = new document(); doc.loadfromfile("sample.doc");
第三步:实例化一个printdialog的对象,设置相关属性。关联doc.printdialog属性和printdialog对象:
printdialog dialog = new printdialog(); dialog.allowprinttofile = true; dialog.allowcurrentpage = true; dialog.allowsomepages = true; dialog.useexdialog = true; doc.printdialog = dialog;
第四步: 后台打印。
使用默认打印机打印出所有页面。这段代码也可以用于网页后台打印:
printdocument printdoc = doc.printdocument; printdoc.print();
第五步: 如要显示打印对话框,就调用showdialog方法,根据打印预览设置选项,打印word文档:
if (dialog.showdialog() == dialogresult.ok) { printdoc.print(); }
这是打印文档过后xps格式的屏幕截图:
全部代码:
using system; using spire.doc; using system.windows.forms; namespace doc_print { public partial class form1 : form { public form1() { initializecomponent(); } private void button1_click(object sender, eventargs e) { // 实例化一个word文档对象 document doc = new document(); // 加载文档 doc.loadfromfile(@"c:\users\administrator\desktop\示例文档.doc"); // 实例化system.windows.forms.printdialog对象 printdialog dialog = new printdialog(); dialog.allowprinttofile = true; dialog.allowcurrentpage = true; dialog.allowsomepages = true; dialog.useexdialog = true; // 关联doc.printdialog属性和printdialog对象 doc.printdialog = dialog; // 后台打印 // printdocument printdoc = doc.printdocument; // printdoc.print(); // 显示打印对话框并打印 if (dialog.showdialog() == dialogresult.ok) { //printdoc.print(); } } } }
以上所述是小编给大家介绍的c#完成word文档打印的方法,希望对大家有所帮助
上一篇: 谈一谈autofac组件的实例范围
下一篇: C# 清除cookies的代码