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

最新文章

  1. cursor 手型样式
  2. UESTC 884 方老师的专题讲座 --数位DP
  3. linux创建git远程仓库
  4. Tomcat设置自己的项目为默认项目(用IP访问的是自己的项目)
  5. 深入了解使用egret.WebSocket
  6. [jQuery] check if an id exists - Google 网上论坛
  7. download youtube video
  8. redis 配置(1)
  9. [ZJOI 2006]书架
  10. Python(Django)项目与Apache的管理交互
  11. windows之如何把iso文件转换为VHD文件
  12. JS最简单的字符串转数字类型
  13. Android 视频播放器 (二):使用MediaPlayer播放视频
  14. 机器学习三剑客之matplotlib 数据绘图展示
  15. 在线HTML编辑器KindEditor
  16. UGUI 判断元素进入舞台
  17. (2019)OCP 12c 062考试题库出现大量新题-4
  18. T-sql for xml path使用(转)
  19. [CSAPP] The Unicode Standard for text coding
  20. (转)PXE+kickstart无人值守安装CentOS 7

热门文章

  1. JSP连接数据库,报Unable to compile class for JSP
  2. python3下urlopen解析中文url编码错误
  3. Java迷宫游戏
  4. 基于移动端Reactive Native轮播组件的应用与开发详解
  5. Vijos1006P1006晴天小猪历险记之Hill[最短路]
  6. hibernate 数据处理
  7. python 类属性与方法
  8. 基数树与RCU锁
  9. bash/shell编程学习(1)
  10. [CareerCup] 1.1 Unique Characters of a String 字符串中不同的字符