0
我正在將我的radgridview
導出到excel
。我的問題是我怎麼才能在單元格上添加邊框頂端...我真的很新,所以請耐心等待...Excel:在單元格中添加邊框頂部....
我試過使用此代碼.Borders[Excel.XlBordersIndex.xlEdgeTop].Weight = 1d;
但仍不能對bordertop
執行操作excel cell .....
在此先感謝。
foreach (GridViewSummaryRowInfo item in gridviewID.MasterView.SummaryRows)
{
objexcelapp.Cells[lastRow + 3, 4] = item.Cells[item.Index + 4].Value.ToString();
objexcelapp.Cells[lastRow + 3, 5] = item.Cells[item.Index + 5].Value.ToString();
objexcelapp.Cells[lastRow + 3, 4].Font.Bold = true;
objexcelapp.Cells[lastRow + 3, 5].Font.Bold = true;
}