NPOI合并单元格后边框显示不正确?


这个方法能解决:SetEnclosedBorderOfRegion()

 

1 //merged cells on mutiple rows
2             CellRangeAddress region = new CellRangeAddress(2, 4, 0, 0);
3             sheet.AddMergedRegion(region);
4 
5             //set enclosed border for the merged region
6             ((HSSFSheet)sheet).SetEnclosedBorderOfRegion(region, BorderStyle.DOTTED, NPOI.HSSF.Util.HSSFColor.RED.index);

注意:如果新建行,边框会初始化。

 

参考:https://q.cnblogs.com/q/42580/

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM