zoukankan      html  css  js  c++  java
  • 导出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);
    }

  • 相关阅读:
    【deep learning精华部分】稀疏自编码提取高阶特征、多层微调完全解释及代码逐行详解
    【machine learning通俗讲解code逐行注释】之线性回归实现
    softmax实现(程序逐句讲解)
    softmax回归(理论部分解释)
    AtomicInteger小小的理解
    jdk8新特性之lambda expressions
    i++ 与 ++i 的从字节码层面看二者的区别
    jdk8永久代从方法区移除的验证
    复杂事件处理引擎—Esper 处理模型
    复杂事件处理引擎—Esper参考(事件部分)
  • 原文地址:https://www.cnblogs.com/cb521413/p/9401957.html
Copyright © 2011-2022 走看看