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

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);
}
}

/// <summary>
/// 设置上标
/// </summary>
public static void SetSuperscript(this Cell cell)
{

//Setting the font name to "Times New Roman"
Style style = cell.GetStyle();

Font font = style.Font;
font.IsSuperscript = true;
// font.setSuperscript(true);

cell.SetStyle(style);
}
/// <summary>
/// 设置下标
/// </summary>
public static void SetSubscript(this Cell cell)
{

//Setting the font name to "Times New Roman"
Style style = cell.GetStyle();

Font font = style.Font;
font.IsSubscript = true;
// font.setSuperscript(true);

cell.SetStyle(style);
}

原文地址:https://www.cnblogs.com/cb521413/p/9401957.html