コード例 #1
0
 /// <summary>
 /// 初始化一个<see cref="ExportBase"/>类型的实例
 /// </summary>
 /// <param name="version">版本</param>
 protected ExportBase(ExcelVersion version)
 {
     Sheet      = new WorkSheet();
     _version   = version;
     _headStyle = CellStyle.Head();
     _bodyStyle = CellStyle.Body();
     _footStyle = CellStyle.Foot();
 }
コード例 #2
0
 /// <summary>
 /// 初始化导出
 /// </summary>
 /// <param name="format">导出格式</param>
 protected ExportBase(ExportFormat format)
 {
     Table      = new Table();
     _format    = format;
     _headStyle = CellStyle.Head();
     _bodyStyle = CellStyle.Body();
     _footStyle = CellStyle.Foot();
 }