aspose.word 合并单元格
时间: 2023-09-04 17:08:11 浏览: 116
使用 Aspose.Words 合并单元格可以通过以下步骤实现:
1. 打开文档并获取表格对象。
```
Document doc = new Document("input.docx");
Table table = doc.FirstSection.Body.Tables[0];
```
2. 选择要合并的单元格并调用 Merge 方法。
```
Cell cell1 = table.Rows[0].Cells[0];
Cell cell2 = table.Rows[1].Cells[0];
cell1.CellFormat.VerticalMerge = CellMerge.First;
cell2.CellFormat.VerticalMerge = CellMerge.Previous;
```
这将合并第一行和第二行中的第一个单元格。
3. 保存文档。
```
doc.Save("output.docx");
```
完整的示例代码如下:
```
Document doc = new Document("input.docx");
Table table = doc.FirstSection.Body.Tables[0];
Cell cell1 = table.Rows[0].Cells[0];
Cell cell2 = table.Rows[1].Cells[0];
cell1.CellFormat.VerticalMerge = CellMerge.First;
cell2.CellFormat.VerticalMerge = CellMerge.Previous;
doc.Save("output.docx");
```
注意:Aspose.Words 是一个商业的第三方组件,需要购买许可证后才能使用。
阅读全文