ClearFormatting
CellFormat.ClearFormatting method
重置为默认单元格格式。不改变单元格的宽度。
public void ClearFormatting()
例子
演示如何将两个表中的行合并为一个表。
Document doc = new Document(MyDir + "Tables.docx");
// 下面是从文档中获取表格的两种方法。
// 1 - 来自 Body 节点的“Tables”集合:
Table firstTable = doc.FirstSection.Body.Tables[0];
// 2 - 使用“GetChild”方法:
Table secondTable = (Table)doc.GetChild(NodeType.Table, 1, true);
// 将当前表中的所有行追加到下一个表中。
while (secondTable.HasChildNodes)
firstTable.Rows.Add(secondTable.FirstRow);
// 删除空表容器。
secondTable.Remove();
doc.Save(ArtifactsDir + "Table.CombineTables.docx");
也可以看看
- class CellFormat
- 命名空间 Aspose.Words.Tables
- 部件 Aspose.Words