溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C# 打印Word文檔

發(fā)布時間:2020-07-13 03:30:08 來源:網(wǎng)絡(luò) 閱讀:824 作者:E_iceblue 欄目:編程語言

本文將介紹通過C# 代碼程序打印Word文檔的方法??梢酝ㄟ^調(diào)用打印對話框(PrintDialog)來進(jìn)行相關(guān)打印設(shè)置,也可以通過靜默打印方式直接打印Word文檔。
工具:Word類庫(Spire.Doc for .NET pack)
Dll下載及引用:通過官網(wǎng)下載pack包。下載后,將BIN文件夾下的程序安裝到指定路徑,完成安裝后可打開Sample Center查看示例文檔及API等,同時,須將安裝路徑下Bin文件夾中的Spire.Doc.dll文件添加引用至VS程序。也可以通過Nuget下載安裝。

【示例1】通過對話框打印

//初始化Document實例
Document doc = new Document();

//加載一個Word文檔
doc.LoadFromFile("sample.docx");

//初始化PrintDialog實例
PrintDialog dialog = new PrintDialog();

//設(shè)置打印對話框?qū)傩?dialog.AllowPrintToFile = true;
dialog.AllowCurrentPage = true;
dialog.AllowSomePages = true;

//設(shè)置文檔打印對話框
doc.PrintDialog = dialog;

//顯示打印對話框并點擊確定執(zhí)行打印
PrintDocument printDoc = doc.PrintDocument;
if (dialog.ShowDialog() == DialogResult.OK)
{
    printDoc.Print();
}

【示例2】靜默打印

//初始化Document實例
Document doc = new Document();

//加載一個Word文檔
doc.LoadFromFile("sample.docx");

//獲取PrintDocument對象
PrintDocument printDoc = doc.PrintDocument;

//設(shè)置PrintController屬性為StandardPrintController,用于隱藏打印進(jìn)程
printDoc.PrintController = new StandardPrintController();

//打印文檔
printDoc.Print();

(本文完)

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI