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

    文檔首頁>>E-iceblue中文文檔>>在word文檔的一側(cè)創(chuàng)建垂直表格

    在word文檔的一側(cè)創(chuàng)建垂直表格


    Spire.Doc 可以幫助開發(fā)人員輕松創(chuàng)建包含數(shù)據(jù)和格式單元格的單詞表,它還支持在 Word 文檔中添加文本水印。本文將向您展示如何在word文檔的一側(cè)創(chuàng)建一個垂直表格,該表格看起來像word文檔中的垂直水印。

    Spire.Doc for.NET 最新下載

    首先,請查看Spire.Doc添加的word文檔右側(cè)垂直表格的有效截圖:

    如何在word文檔的一側(cè)創(chuàng)建垂直表格

    下面介紹如何在C#中創(chuàng)建垂直表格的步驟。

    第 1 步:創(chuàng)建一個新文檔并在文檔中添加一個部分。

    Document document = new Document();
    Section section=document.AddSection();

    第 2 步:添加一個包含行和列的表格并設(shè)置表格的文本。

    Table table = section.AddTable();
    table.ResetCells(1, 1);
    TableCell cell = table.Rows[0].Cells[0];
    table.Rows[0].Height = 150;
    cell.AddParagraph().AppendText("Draft copy in vertical style");

    第 3 步:將表格的 TextDirection 設(shè)置為 RightToLeftRotated。

    cell.CellFormat.TextDirection = TextDirection.RightToLeftRotated;

    第 4 步:設(shè)置表格格式。

    table.TableFormat.WrapTextAround = true;
    table.TableFormat.Positioning.VertRelationTo = VerticalRelation.Page;
    table.TableFormat.Positioning.HorizRelationTo = HorizontalRelation.Page;
    table.TableFormat.Positioning.HorizPosition = section.PageSetup.PageSize.Width- table.Width;
    table.TableFormat.Positioning.VertPosition = 200;

    第 5 步:將文檔保存到文件中。

    document.SaveToFile("result.docx",FileFormat.docx2013);

    C# 中的完整代碼:

    using Spire.Doc;
    using Spire.Doc.Documents;
    
    namespace CreateVerticalTable
    {
    class Program
    {
    static void Main(string[] args)
    {
    
    Document document = new Document();
    Section section=document.AddSection();
    Table table = section.AddTable();
    table.ResetCells(1, 1);
    TableCell cell = table.Rows[0].Cells[0];
    table.Rows[0].Height = 150;
    cell.AddParagraph().AppendText("Draft copy in vertical style");
    cell.CellFormat.TextDirection = TextDirection.RightToLeftRotated;
    table.TableFormat.WrapTextAround = true;
    table.TableFormat.Positioning.VertRelationTo = VerticalRelation.Page;
    table.TableFormat.Positioning.HorizRelationTo = HorizontalRelation.Page;
    table.TableFormat.Positioning.HorizPosition = section.PageSetup.PageSize.Width- table.Width;
    table.TableFormat.Positioning.VertPosition = 200;
    
    document.SaveToFile("result.docx",FileFormat.docx2013);
    
    }
    }
    }
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    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); })();