Aspose.Words For .Net(點擊下載)是一種高級Word文檔處理API,用於執行各類文檔管理和操做任務。API支持生成,修改,轉換,呈現和打印文檔,而無需在跨平臺應用程序中直接使用Microsoft Word。此外,API支持全部流行的Word處理文件格式,並容許將Word文檔導出或轉換爲固定佈局文件格式和最經常使用的圖像/多媒體格式。佈局
在Word文檔和Aspose.Words文檔對象模型中,沒有列的概念。按照設計,Microsoft Word中的錶行徹底獨立,基本屬性和操做僅包含在表的行和單元格中。這爲表提供了一些有趣屬性的可能性:ui
對Microsoft Word中的列執行的任何操做實際上都是「快捷方法」,它經過共同修改行的單元格來執行操做,使得它們看起來應用於列。在Aspose.Words文檔對象模型中, Table 節點由 Row 和 Cell 節點組成。列也沒有本機支持。spa
經過遍歷表的行的相同單元索引來對列實現此類操做,下面的代碼經過證實一個façade類來收集組成表的「列」的單元格,從而使這些操做更容易。下面的示例演示了一個用於處理表的列的Facade對象。設計
/// ///表示Microsoft Word文檔中表的列的Facade對象。 /// internal class Column { private Column(Table table, int columnIndex) { if (table == null) throw new ArgumentException("table"); mTable = table; mColumnIndex = columnIndex; } /// /// 從表中返回一個新的列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); } /// ///在此列以前插入一個全新的列到表中。 /// public Column InsertColumnBefore() { Cell[] columnCells = Cells; if (columnCells.Length == 0) throw new ArgumentException("Column must not be empty"); //建立此列的克隆。 foreach (Cell cell in columnCells) cell.ParentRow.InsertBefore(cell.Clone(false), cell); //這是新專欄. Column column = new Column(columnCells[0].ParentRow.ParentTable, mColumnIndex); //咱們但願確保單元格均可以使用(至少有一個段落)。 foreach (Cell cell in column.Cells) cell.EnsureMinimum(); // 增長此列表示的索引,由於如今有一個額外的列前面。 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(); } /// ///提供構成此外觀所表明的列的最新單元格集合。 /// 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; }
下面的示例顯示如何將空白列插入表中:orm
//獲取文檔中的第一個表. Table table = (Table)doc.GetChild(NodeType.Table, 0, true); // 獲取表格中的第二列. Column column = Column.FromIndex(table, 0); //將列的純文本打印到屏幕. Console.WriteLine(column.ToTxt()); //在此列的左側建立一個新列. //這與在Microsoft Word中使用「Insert Column Before」命令相同. Column newColumn = column.InsertColumnBefore(); //爲每一個列單元格添加一些文本. foreach (Cell cell in newColumn.Cells) cell.FirstParagraph.AppendChild(new Run(doc, "Column Text " + newColumn.IndexOf(cell)));
下面的示例演示如何從文檔中的表中刪除列:對象
//獲取文檔中的第二個表. Table table = (Table)doc.GetChild(NodeType.Table, 1, true); //從表中獲取第三列並將其刪除. Column column = Column.FromIndex(table, 2); column.Remove();