导出excel设置样式(Aspose.Cells)

来源:互联网 发布:比价源码 编辑:程序博客网 时间:2024/06/10 08:51
1.导出excel样式大全
//设置格式
Aspose.Cells.Style style = xlBook.Styles[xlBook.Styles.Add()];

style1.Pattern = Aspose.Cells.BackgroundType.Solid;//单元格的线:实线
style1.HorizontalAlignment = Aspose.Cells.TextAlignmentType.Center;//字体居中
style1.Font.Name = "宋体";//文字字体
style1.Font.Size = 8;//文字大小
style1.IsTextWrapped = true;//单元格内容自动换行
style1.ForegroundColor = System.Drawing.Color.FromArgb(50, 205, 50);//设置背景色 可以参考颜色代码对照表
style1.Font.IsBold = true;//粗体
Cells.Merge(1, 2, 2, 2);//合并单元格
Cells.SetRowHeight(0, 38);//设置行高
Cells.SetColumnWidth(0, 25);//设置列宽
Cells[0, 1].PutValue("2016年中科核安(标准产品)名称型号库存对照表");//添加内容
style1.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;//应用边界线 左边界线
style1.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin; //应用边界线 右边界线
style1.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thin;//应用边界线 上边界线
style1.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thin;//应用边界线 下边界线

//excel数据列 循环列添加样式
for (int i = 0; i < dgv.ColumnCount-1; i++)
{
Cells[0, i].SetStyle(style1);
}
//excel数据行 循环行添加样式
for (int i = 0; i < dt.Rows.Count; i++)
{
for (int j = 0; j < 10; j++)
{
xlSheet.Cells[i + 1, j].SetStyle (style2);
Cells[i+1, 0].SetStyle(style3);
}
}
0 0
原创粉丝点击