C# asp Aspose.Cells 教程,包含增加勾选框,单元格,字体设置

1,引用Aspose.Cells  dll

2,using Aspose.Cells;

3,

Workbook excel = new Workbook();
string strFilePath = System.Web.HttpContext.Current.Server.MapPath("~/File/ExportTemplate/test.xls");
//建立excel并打开模板文件,这种先定义好模板,然后再在模板上进行填写数据
excel.Open(strFilePath);
Worksheet sheet = excel.Worksheets["Sheet1"]; Style styleAlignment = excel.Styles[excel.Styles.Add()];
styleAlignment.VerticalAlignment = Aspose.Cells.TextAlignmentType.Top;
styleAlignment.HorizontalAlignment = Aspose.Cells.TextAlignmentType.Left; ///……………………………………………………这里省略获取数据代码———————— DataTable dtDetail = PubMethod.GetPagedData(strPro, htDetail, , ).Tables[];
//设置表头值
sheet.Cells[, ].PutValue("销税" + dtDetail.Rows[]["DOME_NO"] + "号");
sheet.Cells[, ].PutValue("企业名称:" + strCompNo);//企业名称
sheet.Cells[, ].PutValue("加工贸易手册号:" + strHbNo);//加工贸易手册号
DataTable dtTmp = new DataTable();
for (int i = ; i < ; i++)
{
dtTmp.Columns.Add(i.ToString());
}
for (int i = ; i < dtDetail.Rows.Count; i++)
{
DataRow dr = dtTmp.NewRow();
dr[] = dtDetail.Rows[i]["G_NO"];
dr[] = dtDetail.Rows[i]["G_NAME"];
dr[] = dtDetail.Rows[i]["G_CODE"];
dr[] = dtDetail.Rows[i]["ELEMENT"];
dr[] = dtDetail.Rows[i]["SUMQTY"];
dr[] = dtDetail.Rows[i]["UNIT"];
dr[] = dtDetail.Rows[i]["PRICE"];
dr[] = dtDetail.Rows[i]["TOTAL_PRICE"];
dr[] = dtDetail.Rows[i]["CURR"];
dtTmp.Rows.Add(dr);
}
dtTmp.AcceptChanges();
if (dtTmp.Rows.Count > )
{
sheet.Cells.ImportDataTable(dtTmp, false, , , dtTmp.Rows.Count, , false, "", true);
}
//合计栏位
sheet.Cells[dtDetail.Rows.Count + , ].PutValue("合计:");
sheet.Cells[dtDetail.Rows.Count + , ].Style.Font.IsBold = true;
sheet.Cells[dtDetail.Rows.Count + , ].Style.HorizontalAlignment = Aspose.Cells.TextAlignmentType.Center;
Decimal[] arrDecimal = { , };
for (int i = ; i < dtDetail.Rows.Count; i++)
{
arrDecimal[] += Convert.ToDecimal(dtDetail.Rows[i]["SUMQTY"]);
arrDecimal[] += Convert.ToDecimal(dtDetail.Rows[i]["TOTAL_PRICE"]);
}
sheet.Cells[dtDetail.Rows.Count + , ].PutValue(arrDecimal[]);
sheet.Cells[dtDetail.Rows.Count + , ].PutValue(arrDecimal[]);
sheet.Cells[dtDetail.Rows.Count + , ].Style.Font.IsBold = true;
sheet.Cells[dtDetail.Rows.Count + , ].Style.Font.IsBold = true; Style styleAlignment = excel.Styles[excel.Styles.Add()];
styleAlignment.VerticalAlignment = Aspose.Cells.TextAlignmentType.Top;
styleAlignment.HorizontalAlignment = Aspose.Cells.TextAlignmentType.Left;
styleAlignment.Font.Size = ;
sheet.Cells[dtDetail.Rows.Count + , ].PutValue("加工贸易部门批注意见:");
///设高度
sheet.Cells.SetRowHeight(dtDetail.Rows.Count + , );
sheet.Cells.SetRowHeight(dtDetail.Rows.Count + , );
/// *******这里很重要,非学重要***:
/// 这里要+8,+9两行合并一下,然后下面只对+9和+11行进行样式调整System.Drawing.Color.White,让它的线变白。
/// 这样才会有“注:本表格……”上面那条线,如果不合并两行,就用一行,就会发现这条线一直不出现。
Range r2 = sheet.Cells.CreateRange(sheet.Cells[dtDetail.Rows.Count + , ].Name, sheet.Cells[dtDetail.Rows.Count + , ].Name);
r2.Merge();
//样式调整,把黑边线去掉
for (int i = ; i < ; i++)
{
sheet.Cells[dtDetail.Rows.Count + , i].Style.Borders.SetColor(System.Drawing.Color.White);
sheet.Cells[dtDetail.Rows.Count + , i].Style.Borders.SetColor(System.Drawing.Color.White);
sheet.Cells[dtDetail.Rows.Count + , i].Style.Borders.SetColor(System.Drawing.Color.White);
}
//自适应行高
sheet.AutoFitRows();
Style styleLeft = excel.Styles[excel.Styles.Add()];
styleLeft.Borders[BorderType.LeftBorder].Color = System.Drawing.Color.Black;
styleLeft.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thin;
Style styleRight = excel.Styles[excel.Styles.Add()];
styleRight.Borders[BorderType.RightBorder].Color = System.Drawing.Color.Black;
styleRight.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thin;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleLeft;
sheet.Cells[dtDetail.Rows.Count + , ].Style.Font.Size = ;
sheet.Cells.SetRowHeight(dtDetail.Rows.Count + , );
sheet.Cells[dtDetail.Rows.Count + , ].Style.VerticalAlignment = Aspose.Cells.TextAlignmentType.Top;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleLeft;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleLeft;
sheet.Cells[dtDetail.Rows.Count + , ].PutValue("签字:");
sheet.Cells[dtDetail.Rows.Count + , ].PutValue("日期:");
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleAlignment;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleAlignment;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleRight;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleRight;
sheet.Cells[dtDetail.Rows.Count + , ].Style = styleRight;
//单元格外文字设置
Range r6 = sheet.Cells.CreateRange(sheet.Cells[dtDetail.Rows.Count + , ].Name, sheet.Cells[dtDetail.Rows.Count + , ].Name);
r6.Merge();
sheet.Cells[dtDetail.Rows.Count + , ].PutValue("注:本表格一式三份: 一份通关部门留存, 一份加工贸易部门留存, 一份企业留存.");
sheet.Cells[dtDetail.Rows.Count + , ].Style.HorizontalAlignment = Aspose.Cells.TextAlignmentType.Left;
for (int i = ; i < ; i++)
{
sheet.Cells[dtDetail.Rows.Count + , i].Style.Borders.SetColor(System.Drawing.Color.White);
}

具体代码 有部分注释

4,上面的代码最后显示的格式是这样的,见下图:

C# asp Aspose.Cells 教程,包含增加勾选框,单元格,字体设置

5,最终转民PDF打印是这样的,见下图:
C# asp Aspose.Cells 教程,包含增加勾选框,单元格,字体设置

6,注意:这边做样式的时候一定要注意不要将上面的样式给覆盖了。

  如果对+6,0已经做了一些样式,然后再用下面这个语句,+6,0的样式将被改写,样式就只能是styleLeft对应样式了。

  sheet.Cells[dtDetail.Rows.Count + 6, 0].Style = styleLeft;

7,增加勾选框

  到目前为止我看网上没有特别好的解决方法,有些人说直接插入一个图片,那么有兴趣的同学可以去试一下。

做了之后你们发现,如果你用模板做的你插入的那个图片就是浮在excel里面。如果你最终要以pdf打印出来,那么你会发现样式没法调,很不好看。

好那么我这边用一个很简单的方法让大家实现文本框加勾。

  一,首先我做好一个excel打印的模板,然后在右边(非打印区域)增加待插入内容。

    内容:输入一个R,对就是大写的R,然后字体设成“Wingdings 2” 然后再写上“是”和插入一个特殊字符(没勾选的框),再写上一个否最终就是C# asp Aspose.Cells 教程,包含增加勾选框,单元格,字体设置(设这个放在3,18单元格中)

    当然还要在另一个单元格里做一个选择否的。C# asp Aspose.Cells 教程,包含增加勾选框,单元格,字体设置(设这个放在3,19单元格中)

  二,根据数据中实际勾选内容,将第一步对应的单元格复制到你要填入值的单元格中。

    

    
    例:现在的要实际选择了“是”,且要将值放到cell[3,8]中,那么代码如下:
    sheet.Cells[3, 8].Copy(sheet.Cells[3,18]);
  
  三,然后最后再用代码将第一步增加的待插入内容,这样打印出来就是我们要的那个模板的样式。且有勾选框。
7,Aspose.Cells如何设置单元格数字和日期的显示格式
//Getting the Style of the A1 Cell
Style style = worksheet.Cells["A1"].GetStyle();
//Setting the display format to number 15 to show date as "d-mmm-yy"
style.Number = 15;
Aspose.Cells提供的内嵌显示格式:
Value Type Format String
General General
Decimal
Decimal 0.00
Decimal #,##
Decimal #,##0.00
Currency $#,##;$-#,##
Currency $#,##;[Red]$-#,##
Currency $#,##0.00;$-#,##0.00
Currency $#,##0.00;[Red]$-#,##0.00
Percentage %
Percentage 0.00%
Scientific 0.00E+00
Fraction # ?/?
Fraction # /
Date m/d/yy
Date d-mmm-yy
Date d-mmm
Date mmm-yy
Time h:mm AM/PM
Time h:mm:ss AM/PM
Time h:mm
Time h:mm:ss
Time m/d/yy h:mm
Currency #,##;-#,##
Currency #,##;[Red]-#,##
Currency #,##0.00;-#,##0.00
Currency #,##0.00;[Red]-#,##0.00
Accounting _ * #,##0_ ;_ * "_ ;_ @_
Accounting _ $* #,##0_ ;_ $* "_ ;_ @_
Accounting _ * #,##.00_ ;_ * "??_ ;_ @_
Accounting _ $* #,##.00_ ;_ $* "??_ ;_ @_
Time mm:ss
Time h :mm:ss
Time mm:ss.
Scientific ##0.0E+00
Text @

Aspose.Cells提供的内嵌显示格式

    
上一篇:View and Data API tips: 缓存Access Token


下一篇:微信开发-ACCESS TOKEN 过期失效解决方案