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

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);
}
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值