在項(xiàng)目開發(fā)中,一般需要對(duì)文檔進(jìn)行操作,但是使用微軟提供的插件,需要安裝一些程序,并且如果使用wps類的文檔軟件就無法操作了,第三方插件DocX就可以很好的解決這些文檔,結(jié)合官方提供的文檔,稍作修改,總結(jié)如下的一些方法:
員工經(jīng)過長期磨合與沉淀,具備了協(xié)作精神,得以通過團(tuán)隊(duì)的力量開發(fā)出優(yōu)質(zhì)的產(chǎn)品。成都創(chuàng)新互聯(lián)公司堅(jiān)持“專注、創(chuàng)新、易用”的產(chǎn)品理念,因?yàn)椤皩W⑺詫I(yè)、創(chuàng)新互聯(lián)網(wǎng)站所以易用所以簡單”。公司專注于為企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站建設(shè)、微信公眾號(hào)開發(fā)、電商網(wǎng)站開發(fā),微信小程序定制開發(fā),軟件定制網(wǎng)站開發(fā)等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。1.創(chuàng)建一個(gè)具有超鏈接、圖像和表的文檔:
////// 創(chuàng)建一個(gè)具有超鏈接、圖像和表的文檔。 /// /// 文檔保存路徑 /// 加載的圖片路徑 public static void HyperlinksImagesTables(string path, string p_w_picpathPath) { // 創(chuàng)建一個(gè)文檔 using (var document = DocX.Create(path)) { // 在文檔中添加超鏈接。 var link = document.AddHyperlink("link", new Uri("http://www.google.com")); // 在文檔中添加一個(gè)表。 var table = document.AddTable(2, 2); table.Design = TableDesign.ColorfulGridAccent2; table.Alignment = Alignment.center; table.Rows[0].Cells[0].Paragraphs[0].Append("1"); table.Rows[0].Cells[1].Paragraphs[0].Append("2"); table.Rows[1].Cells[0].Paragraphs[0].Append("3"); table.Rows[1].Cells[1].Paragraphs[0].Append("4"); var newRow = table.InsertRow(table.Rows[1]); newRow.ReplaceText("4", "5"); // 將圖像添加到文檔中。 var p_w_picpath = document.AddImage(p_w_picpathPath); //創(chuàng)建一個(gè)圖片(一個(gè)自定義視圖的圖像)。 var picture = p_w_picpath.CreatePicture(); picture.Rotation = 10; picture.SetPictureShape(BasicShapes.cube); // 在文檔中插入一個(gè)新段落。 var title = document.InsertParagraph().Append("Test").FontSize(20).Font(new FontFamily("Comic Sans MS")); title.Alignment = Alignment.center; // 在文檔中插入一個(gè)新段落。 var p1 = document.InsertParagraph(); // 附加內(nèi)容到段落 p1.AppendLine("This line contains a ").Append("bold").Bold().Append(" word."); p1.AppendLine("Here is a cool ").AppendHyperlink(link).Append("."); p1.AppendLine(); p1.AppendLine("Check out this picture ").AppendPicture(picture).Append(" its funky don't you think?"); p1.AppendLine(); p1.AppendLine("Can you check this Table of figures for me?"); p1.AppendLine(); // 在第1段后插入表格。 p1.InsertTableAfterSelf(table); // 在文檔中插入一個(gè)新段落。 Paragraph p2 = document.InsertParagraph(); // 附加內(nèi)容到段落。 p2.AppendLine("Is it correct?"); // 保存當(dāng)前文檔 document.Save(); } }
2.設(shè)置文檔的標(biāo)題和頁腳:
////// 設(shè)置文檔的標(biāo)題和頁腳 /// /// 文檔的路徑 public static bool HeadersAndFooters(string path) { try { // 創(chuàng)建新文檔 using (var document = DocX.Create(path)) { // 這個(gè)文檔添加頁眉和頁腳。 document.AddHeaders(); document.AddFooters(); // 強(qiáng)制第一個(gè)頁面有一個(gè)不同的頭和腳。 document.DifferentFirstPage = true; // 奇偶頁頁眉頁腳不同 document.DifferentOddAndEvenPages = true; // 獲取本文檔的第一個(gè)、奇數(shù)和甚至是頭文件。 Header headerFirst = document.Headers.first; Header headerOdd = document.Headers.odd; Header headerEven = document.Headers.even; // 獲取此文檔的第一個(gè)、奇數(shù)和甚至腳注。 Footer footerFirst = document.Footers.first; Footer footerOdd = document.Footers.odd; Footer footerEven = document.Footers.even; // 將一段插入到第一個(gè)頭。 Paragraph p0 = headerFirst.InsertParagraph(); p0.Append("Hello First Header.").Bold(); // 在奇數(shù)頭中插入一個(gè)段落。 Paragraph p1 = headerOdd.InsertParagraph(); p1.Append("Hello Odd Header.").Bold(); // 插入一個(gè)段落到偶數(shù)頭中。 Paragraph p2 = headerEven.InsertParagraph(); p2.Append("Hello Even Header.").Bold(); // 將一段插入到第一個(gè)腳注中。 Paragraph p3 = footerFirst.InsertParagraph(); p3.Append("Hello First Footer.").Bold(); // 在奇數(shù)腳注中插入一個(gè)段落。 Paragraph p4 = footerOdd.InsertParagraph(); p4.Append("Hello Odd Footer.").Bold(); // 插入一個(gè)段落到偶數(shù)頭中。 Paragraph p5 = footerEven.InsertParagraph(); p5.Append("Hello Even Footer.").Bold(); // 在文檔中插入一個(gè)段落。 Paragraph p6 = document.InsertParagraph(); p6.AppendLine("Hello First page."); // 創(chuàng)建一個(gè)第二個(gè)頁面,顯示第一個(gè)頁面有自己的頭和腳。 p6.InsertPageBreakAfterSelf(); // 在頁面中斷后插入一段。 Paragraph p7 = document.InsertParagraph(); p7.AppendLine("Hello Second page."); // 創(chuàng)建三分之一頁面顯示,奇偶頁不同的頁眉和頁腳。 p7.InsertPageBreakAfterSelf(); // 在頁面中斷后插入一段。 Paragraph p8 = document.InsertParagraph(); p8.AppendLine("Hello Third page."); // 將屬性保存入文檔 document.Save(); return true; } } catch (Exception ex) { throw new Exception(ex.Message); } //從內(nèi)存中釋放此文檔。 }
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開啟,新人活動(dòng)云服務(wù)器買多久送多久。