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

  • 相关阅读:
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    我的友情链接
    以太坊:通信协议对象 shh
    以太坊:Truffle 概述
    以太坊:快速入门 Truffle
  • 原文地址:https://www.cnblogs.com/lanyue52011/p/3372452.html
Copyright © 2011-2022 走看看