• <menu id="w2i4a"></menu>
  • logo Aspose.Words開發(fā)者指南

    文檔首頁(yè)>>Aspose.Words開發(fā)者指南>>Aspose.Words for .NET使用表格教程之在表格中插入和刪除列

    Aspose.Words for .NET使用表格教程之在表格中插入和刪除列


    Aspose.Words For .Net是一種高級(jí)Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務(wù)。API支持生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印文檔,而無需在跨平臺(tái)應(yīng)用程序中直接使用Microsoft Word。此外,API支持所有流行的Word處理文件格式,并允許將Word文檔導(dǎo)出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。

    接下來我們將進(jìn)入“使用格式”的介紹,其中包括應(yīng)用格式、介紹和創(chuàng)建表、添加和拆分表以及使用列和行。

    >>Aspose.Words for .NET更新至最新版v19.9,歡迎下載體驗(yàn)


    在Word文檔和Aspose.Words文檔對(duì)象模型中,沒有列的概念。按照設(shè)計(jì),Microsoft Word中的表行完全獨(dú)立,基本屬性和操作僅包含在表的行和單元格中。這為表提供了一些有趣屬性的可能性:

    • 表中的每一行可以具有完全不同數(shù)量的單元格。
    • 垂直地,每行的單元格可以具有不同的寬度。
    • 可以連接具有不同行格式和單元格計(jì)數(shù)的表。

    對(duì)Microsoft Word中的列執(zhí)行的任何操作實(shí)際上都是“快捷方法”,它通過共同修改行的單元格來執(zhí)行操作,使得它們看起來應(yīng)用于列。在Aspose.Words文檔對(duì)象模型中, Table 節(jié)點(diǎn)由 Row 和 Cell 節(jié)點(diǎn)組成。列也沒有本機(jī)支持。

    通過遍歷表的行的相同單元索引來對(duì)列實(shí)現(xiàn)此類操作,下面的代碼通過證明一個(gè)fa?ade類來收集組成表的“列”的單元格,從而使這些操作更容易。下面的示例演示了一個(gè)用于處理表的列的Facade對(duì)象。

    ///     
    ///表示Microsoft Word文檔中表的列的Facade對(duì)象。   
    ///     
    internal class Column    
    {    
    private Column(Table table, int columnIndex)    
    {    
    if (table == null)    
    throw new ArgumentException("table");    
    mTable = table;    
    mColumnIndex = columnIndex;    
    }    
    ///     
    /// 從表中返回一個(gè)新的列Facade,并提供從零開始的索引。    
    ///     
    public static Column FromIndex(Table table, int columnIndex)    
    {    
    return new Column(table, columnIndex);    
    }    
    ///     
    /// 返回組成列的單元格。
    ///     
    public Cell[] Cells    
    {    
    get    
    {    
    return (Cell[])GetColumnCells().ToArray(typeof(Cell));    
    }    
    }    
    ///     
    ///返回列中給定單元格的索引。    
    ///     
    public int IndexOf(Cell cell)    
    {    
    return GetColumnCells().IndexOf(cell);    
    }    
    ///     
    ///在此列之前插入一個(gè)全新的列到表中。
    ///     
    public Column InsertColumnBefore()    
    {    
    Cell[] columnCells = Cells;    
    if (columnCells.Length == 0)    
    throw new ArgumentException("Column must not be empty");    
    //創(chuàng)建此列的克隆。    
    foreach (Cell cell in columnCells)    
    cell.ParentRow.InsertBefore(cell.Clone(false), cell);    
    //這是新專欄.    
    Column column = new Column(columnCells[0].ParentRow.ParentTable, mColumnIndex);    
    //我們希望確保單元格都可以使用(至少有一個(gè)段落)。
    foreach (Cell cell in column.Cells)    
    cell.EnsureMinimum();    
    // 增加此列表示的索引,因?yàn)楝F(xiàn)在有一個(gè)額外的列前面。  
    mColumnIndex++;    
    return column;    
    }    
    ///     
    ///從表中刪除列。   
    ///     
    public void Remove()    
    {    
    foreach (Cell cell in Cells)    
    cell.Remove();    
    }    
    ///     
    /// 返回列的文本。   
    ///     
    public string ToTxt()    
    {    
    StringBuilder builder = new StringBuilder();    
    foreach (Cell cell in Cells)    
    builder.Append(cell.ToString(SaveFormat.Text));    
    return builder.ToString();    
    }    
    ///     
    ///提供構(gòu)成此外觀所代表的列的最新單元格集合。
    ///     
    private ArrayList GetColumnCells()    
    {    
    ArrayList columnCells = new ArrayList();    
    foreach (Row row in mTable.Rows)    
    {    
    Cell cell = row.Cells[mColumnIndex];    
    if (cell != null)    
    columnCells.Add(cell);    
    }    
    return columnCells;    
    }    
    private int mColumnIndex;    
    private Table mTable;    
    }

    下面的示例顯示如何將空白列插入表中:

    //獲取文檔中的第一個(gè)表.    
    Table table = (Table)doc.GetChild(NodeType.Table, 0, true);  
      
    // 獲取表格中的第二列.    
    Column column = Column.FromIndex(table, 0);    
    //將列的純文本打印到屏幕.    
    Console.WriteLine(column.ToTxt());    
    //在此列的左側(cè)創(chuàng)建一個(gè)新列.    
    //這與在Microsoft Word中使用“Insert Column Before”命令相同.    
    Column newColumn = column.InsertColumnBefore(); 
       
    //為每個(gè)列單元格添加一些文本.    
    foreach (Cell cell in newColumn.Cells)    
    cell.FirstParagraph.AppendChild(new Run(doc, "Column Text " + newColumn.IndexOf(cell)));

    下面的示例演示如何從文檔中的表中刪除列:

    //獲取文檔中的第二個(gè)表.
    Table table = (Table)doc.GetChild(NodeType.Table, 1, true);
    
    //從表中獲取第三列并將其刪除.
    Column column = Column.FromIndex(table, 2);
    column.Remove();

    *悅滿中秋 · 購(gòu)享好禮,現(xiàn)在購(gòu)買Aspose系列產(chǎn)品即可領(lǐng)取精美禮品喲,更多活動(dòng)詳情咨詢?cè)诰€客服了解哦~


    ASPOSE技術(shù)交流QQ群已開通,各類資源及時(shí)分享,歡迎交流討論!(掃描下方二維碼加入群聊)

    1560231367164.png


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

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