文檔首頁>>E-iceblue中文文檔>>在 C# 中設(shè)置 Word 文檔的頁面大小
在 C# 中設(shè)置 Word 文檔的頁面大小
Spire.Doc for .NET 是一款專門對 Word 文檔進(jìn)行操作的 .NET 類庫。致力于在于幫助開發(fā)人員輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔,而無需安裝 Microsoft Word。
事實(shí)上,Spire.Doc 已經(jīng)為程序員提供了類似的方法來設(shè)置 Word 頁面大小。本文將介紹如何選擇定義的頁面大小或如何使用 C# 中的 Spire.Doc 為 Word 文檔設(shè)置自定義大小。
代碼片段:
第 1 步:創(chuàng)建一個(gè)帶有空白部分的 Word 文檔。
Document doc = new Document(); Section section = doc.AddSection();
第 2 步:將頁面大小設(shè)置為 A4。在 PageSize 類中,為您預(yù)先配置了許多已定義的頁面大小。
section.PageSetup.PageSize = PageSize.A4;
但是,如果您想將頁面設(shè)置為自定義大小,請將上面的代碼替換為以下代碼段。
section.PageSetup.PageSize = new System.Drawing.SizeF(500, 800); section.PageSetup.Orientation = PageOrientation.Portrait;
第 3 步:將一些文本附加到該部分。
Paragraph Para = section.AddParagraph(); Para.AppendText("Spire.Doc for .NET, a professional .NET Word component, " + "enables developers to perform a large range of tasks on Word document (from Version Word97-2003 to Word 2010) " + "for .NET in C# and VB.NET. ");
第 4 步:保存文件并開始查看。
doc.SaveToFile("result.docx", FileFormat.Docx); System.Diagnostics.Process.Start("result.docx");
輸出:
1) 選擇定義的頁面大小。
2)自定義Word文檔的大小。
完整代碼:
using System.Drawing; using Spire.Doc; using Spire.Doc.Documents; namespace CustomPageSize { class Program { static void Main(string[] args) { Document doc = new Document(); Section section = doc.AddSection(); section.PageSetup.PageSize = PageSize.A4; //section.PageSetup.PageSize = new System.Drawing.SizeF(550, 800); //section.PageSetup.Orientation = PageOrientation.Portrait; Paragraph Para = section.AddParagraph(); Para.AppendText("Spire.Doc for .NET, a professional .NET Word component, " + "enables developers to perform a large range of tasks on Word document (from Version Word97-2003 to Word 2010) " + "for .NET in C# and VB.NET. "); doc.SaveToFile("result.docx", FileFormat.Docx); System.Diagnostics.Process.Start("result.docx"); } } }