表格能够直观的传达数据信息,使信息显得条理化,便于阅读同时也利于管理。那在PDF类型的文档中如何来添加表格并且对表格进行格式化操作呢?使用常规方法直接在PDF中添加表格行不通,那我们可以在借助第三方组件的情况下来实现。本篇文章中将介绍如何正确使用组件Free Spire.PDF for .NET添加表格到PDF。该组件提供了两个类PdfTable和PdfGrid用于创建表格,在进行代码编辑前,需先安装,添加Spire.PDF. dll到项目程序集中,同时添加到命名空间。下面是两种方法来添加表格的全部代码,供参考。
两种类用于创建表格的异同:
PdfTable |
PdfGrid |
|
行 |
无API支持,可通过事件设置 |
可直接通过API设置 |
列 |
可直接通过API设置(StringFormat) |
可直接通过API设置(StringFormat) |
单元格 |
无API支持,可通过事件设置 |
可直接通过API设置 |
单元格纵向合并 |
不支持 |
可直接通过API设置 |
单元格横向合并 |
无API支持,可通过事件设置 |
可直接通过API设置 |
嵌套表格 |
无API支持,可通过事件设置 |
可直接通过API设置 |
事件 |
BeginCellLayout, BeginPageLayout, BeginRowLayout, EndCellLayout, EndPageLayout, EndRowLayout |
BeginPageLayout, EndPageLayout |
一、通过PdfTable类来创建表格
using System.Drawing;
using Spire.Pdf;
using Spire.Pdf.Tables;
using Spire.Pdf.Graphics;
using System.Data; namespace DrawTable1_PDF
{
class Program
{
static void Main(string[] args)
{
//创建一个PdfDocument类对象并向文档新添加一页
PdfDocument doc = new PdfDocument();
PdfPageBase page = doc.Pages.Add(); //创建一个PdfTable对象
PdfTable table = new PdfTable();
//设置字体
table.Style.DefaultStyle.Font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 9f), true);
table.Style.HeaderStyle.Font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 9f), true); //创建一个DataTable并写入数据
DataTable dataTable = new DataTable();
dataTable.Columns.Add("产品类型");
dataTable.Columns.Add("产品编号");
dataTable.Columns.Add("采购数额(件)");
dataTable.Columns.Add("所属月份"); dataTable.Rows.Add(new string[] { "A", "", "", "7月"});
dataTable.Rows.Add(new string[] { "B", "", "", "8月"});
dataTable.Rows.Add(new string[] { "C", "", "", "9月"}); //填充数据到PDF表格
table.DataSource = dataTable;
//显示表头(默认不显示)
table.Style.ShowHeader = true;
//在BeginRowLayout事件处理方法中注册自定义事件
table.BeginRowLayout += Table_BeginRowLayout; //将表格绘入PDF并指定位置和大小
table.Draw(page, new RectangleF(, , , )); //保存到文档并预览
doc.SaveToFile("PDF表格_1.pdf");
System.Diagnostics.Process.Start("PDF表格_1.pdf");
} //在自定义事件中设置行高
private static void Table_BeginRowLayout(object sender, BeginRowLayoutEventArgs args)
{
args.MinimalHeight = 10f;
}
}
}
运行程序生成文件(可在该项目文件下bin>Debug查看)
效果展示:
二、通过PdfGrid类来添加表格
using Spire.Pdf;
using System.Drawing;
using Spire.Pdf.Grid;
using Spire.Pdf.Graphics;
using Spire.Pdf.Tables; namespace DrawTable_PDF
{
class Program
{
static void Main(string[] args)
{
//创建一个PdfDocument类对象,并新添加一页到PDF文档
PdfDocument doc = new PdfDocument();
PdfPageBase page = doc.Pages.Add(); //创建一个PdfGrid对象
PdfGrid grid = new PdfGrid();
//设置单元格边距和表格默认字体
grid.Style.CellPadding = new PdfPaddings(, , , );
grid.Style.Font = new PdfTrueTypeFont(new Font("Arial Unicode MS", 9f), true); //添加一个5行6列表格到新建的PDF文档
PdfGridRow row1 = grid.Rows.Add();
PdfGridRow row2 = grid.Rows.Add();
PdfGridRow row3 = grid.Rows.Add();
PdfGridRow row4 = grid.Rows.Add();
PdfGridRow row5 = grid.Rows.Add();
grid.Columns.Add(); //设置列宽
foreach (PdfGridColumn col in grid.Columns)
{
col.Width = 55f;
} //写入数据
row1.Cells[].Value = "新入职员工基本信息";
row2.Cells[].Value = "入职时间";
row2.Cells[].Value = "姓名";
row2.Cells[].Value = "部门";
row2.Cells[].Value = "学历";
row2.Cells[].Value = "联系电话";
row2.Cells[].Value = "正式员工"; row3.Cells[].Value = "3月";
row3.Cells[].Value = "马超";
row3.Cells[].Value = "研发部";
row3.Cells[].Value = "硕士";
row3.Cells[].Value = "153****6543";
row3.Cells[].Value = "是"; row4.Cells[].Value = "4月";
row4.Cells[].Value = "刘陵";
row4.Cells[].Value = "研发部";
row4.Cells[].Value = "本科";
row4.Cells[].Value = "176****5464";
row4.Cells[].Value = "是"; row5.Cells[].Value = "4月";
row5.Cells[].Value = "张丽";
row5.Cells[].Value = "研发部";
row5.Cells[].Value = "本科";
row5.Cells[].Value = "158****4103";
row5.Cells[].Value = "是"; //水平和垂直方向合并单元格
row1.Cells[].ColumnSpan = ;
row4.Cells[].RowSpan = ;
row3.Cells[].RowSpan = ;
row4.Cells[].RowSpan = ; //设置单元格内文字对齐方式
PdfTable table = new PdfTable();
row1.Cells[].StringFormat = new PdfStringFormat(PdfTextAlignment.Center);
row4.Cells[].StringFormat = new PdfStringFormat(PdfTextAlignment.Justify, PdfVerticalAlignment.Middle);
row3.Cells[].StringFormat = new PdfStringFormat(PdfTextAlignment.Justify, PdfVerticalAlignment.Middle);
row4.Cells[].StringFormat = new PdfStringFormat(PdfTextAlignment.Justify, PdfVerticalAlignment.Middle); //设置单元格背景颜色
row1.Cells[].Style.BackgroundBrush = PdfBrushes.LightGreen; //设置表格边框颜色、粗细
PdfBorders borders = new PdfBorders();
borders.All = new PdfPen(Color.Black, 0.1f);
foreach (PdfGridRow pgr in grid.Rows)
{
foreach (PdfGridCell pgc in pgr.Cells)
{
pgc.Style.Borders = borders;
}
} //在指定位置绘入表格
grid.Draw(page, new PointF(, )); //保存到文档
doc.SaveToFile("PDF表格.pdf");
System.Diagnostics.Process.Start("PDF表格.pdf");
}
}
}
效果展示:
以上是关于组件Free Spire.PDF for .NET用于在PDF 中创建表格的方法介绍,如对您有所帮助,欢迎转载(转载请注明出处)