• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁>>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è)置自定義大小。

    Spire.Doc for.NET 最新下載

    代碼片段:

    第 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) 選擇定義的頁面大小。

    Spire.Doc for.NET 最新下載

    2)自定義Word文檔的大小。

    Spire.Doc for.NET 最新下載

    完整代碼

    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");
    }
    }
    }
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();