最佳答案
我正在使用 EPPlus 库读/写 Excel 文件: http://epplus.codeplex.com/
我尝试在编写文档时简单地合并一些单元格:
using (ExcelPackage pck = new ExcelPackage())
{
//Create the worksheet
ExcelWorksheet ws = pck.Workbook.Worksheets.Add("Demo");
//Format the header for column 1-3
using (ExcelRange rng = ws.Cells["A1:C1"])
{
bool merge = rng.Merge;
}
}
有一个名为 Merge 的属性,它只返回 true 或 false。我以为这样可以把细胞合并,但是没有。
有人知道怎么做吗?