2014年9月26日 星期五

NPOI Excel合併儲存格


http://no2don.blogspot.com/2014/05/c-npoi-excel.html

可參考: http://no2don.blogspot.com/2013/02/c-nopi-excel-xls.html

合併儲存格最重要的Code :

var workbook = new HSSFWorkbook();
var sheetReportResult = workbook.CreateSheet("報表結果");
 //產生第一個要用CreateRow 
sheetReportResult.CreateRow(0).CreateCell(0).SetCellValue("客戶資料");
 
//建立跨越五列(共六列 1~6)  ,跨越三欄(共四欄 A~D)
sheetReportResult.AddMergedRegion(new CellRangeAddress(0, 5, 0, 3));
重點在最後一行進行合併
合併後,塞資料方法一如往常,只是請注意,已經跨越的攔或列都必須要計算進去




沒有留言: