zoukankan      html  css  js  c++  java
  • Aspose.Cells 导出 excel

    Aspose.Cells.Workbook book = new Aspose.Cells.Workbook();
    Aspose.Cells.Worksheet sheet = book.Worksheets["Sheet1"];
    sheet.FreezePanes(1, 1, 1, 0);

    Aspose.Cells.Style style = book.Styles[book.Styles.Add()];
    style.Pattern = Aspose.Cells.BackgroundType.Solid;


    style.Borders.SetStyle(Aspose.Cells.CellBorderType.Thin);
    style.Borders.SetColor(System.Drawing.Color.LightSteelBlue);
    style.IsTextWrapped = true;
    style.Font.Size = 10;


    Aspose.Cells.StyleFlag flag = new Aspose.Cells.StyleFlag();
    flag.All = true;

    sheet.Cells.ApplyStyle(style, flag);

    style.VerticalAlignment = Aspose.Cells.TextAlignmentType.Center;
    style.Font.IsBold = true;
    flag.All = true;

    sheet.Cells.Rows[0].ApplyStyle(style, flag);

    sheet.Cells.ImportDataTable(dt, true, 0, 0, dt.Rows.Count, dt.Columns.Count, false, "yyyy-MM-dd", false);

    book.Save(DateTime.Now.ToString("yyyyMMddhhmmss") + ".xlsx", Aspose.Cells.FileFormatType.Excel2007Xlsx, Aspose.Cells.SaveType.OpenInExcel, Response);

  • 相关阅读:
    Liunx服务器部署MySQL
    TCP/IP协议与Http、RPC和Socket
    InfluxDB简介
    nodeJS中的包
    什么是Solr,它能为我们解决什么问题,怎么用?
    tp基础补充
    用户流程
    已有模板与tp框架的结合 (前台)
    tp模板基础
    Smarty小结提纲
  • 原文地址:https://www.cnblogs.com/lanyue52011/p/3372452.html
Copyright © 2011-2022 走看看