Example #1
0
 private void ExcelTitle()
 {
     excel.RowStart();
     excel.CellWithoutFormula("String", "订单号");
     excel.CellWithoutFormula("String", "会员名");
     excel.CellWithoutFormula("String", "总数量");
     excel.CellWithoutFormula("String", "总金额");
     excel.CellWithoutFormula("String", "总积分");
     excel.CellWithoutFormula("String", "兑换状态");
     excel.CellWithoutFormula("String", "备注");
     excel.CellWithoutFormula("String", "下单时间");
     excel.RowEnd();
     excelRows++;
     excelColumns = 8;
 }