這篇文章給大家分享的是有關(guān)C#在PDF文檔中如何創(chuàng)建表格的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
成都創(chuàng)新互聯(lián)公司是專業(yè)的霞山網(wǎng)站建設(shè)公司,霞山接單;提供成都網(wǎng)站制作、網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進行霞山網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
兩種類用于創(chuàng)建表格的異同:
| PdfTable | PdfGrid |
行 | 無API支持,可通過事件設(shè)置 | 可直接通過API設(shè)置 |
列 | 可直接通過API設(shè)置(StringFormat) | 可直接通過API設(shè)置(StringFormat) |
單元格 | 無API支持,可通過事件設(shè)置 | 可直接通過API設(shè)置 |
單元格縱向合并 | 不支持 | 可直接通過API設(shè)置 |
單元格橫向合并 | 無API支持,可通過事件設(shè)置 | 可直接通過API設(shè)置 |
嵌套表格 | 無API支持,可通過事件設(shè)置 | 可直接通過API設(shè)置 |
事件 | BeginCellLayout, BeginPageLayout, BeginRowLayout, EndCellLayout, EndPageLayout, EndRowLayout | BeginPageLayout, EndPageLayout |
一、通過PdfTable類來創(chuàng)建表格
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) { //創(chuàng)建一個PdfDocument類對象并向文檔新添加一頁 PdfDocument doc = new PdfDocument(); PdfPageBase page = doc.Pages.Add(); //創(chuàng)建一個PdfTable對象 PdfTable table = new PdfTable(); //設(shè)置字體 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); //創(chuàng)建一個DataTable并寫入數(shù)據(jù) DataTable dataTable = new DataTable(); dataTable.Columns.Add("產(chǎn)品類型"); dataTable.Columns.Add("產(chǎn)品編號"); dataTable.Columns.Add("采購數(shù)額(件)"); dataTable.Columns.Add("所屬月份"); dataTable.Rows.Add(new string[] { "A", "00101", "35", "7月"}); dataTable.Rows.Add(new string[] { "B", "00102", "56", "8月"}); dataTable.Rows.Add(new string[] { "C", "00103", "25", "9月"}); //填充數(shù)據(jù)到PDF表格 table.DataSource = dataTable; //顯示表頭(默認不顯示) table.Style.ShowHeader = true; //在BeginRowLayout事件處理方法中注冊自定義事件 table.BeginRowLayout += Table_BeginRowLayout; //將表格繪入PDF并指定位置和大小 table.Draw(page, new RectangleF(0, 60, 200, 200)); //保存到文檔并預(yù)覽 doc.SaveToFile("PDF表格_1.pdf"); System.Diagnostics.Process.Start("PDF表格_1.pdf"); } //在自定義事件中設(shè)置行高 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) { //創(chuàng)建一個PdfDocument類對象,并新添加一頁到PDF文檔 PdfDocument doc = new PdfDocument(); PdfPageBase page = doc.Pages.Add(); //創(chuàng)建一個PdfGrid對象 PdfGrid grid = new PdfGrid(); //設(shè)置單元格邊距和表格默認字體 grid.Style.CellPadding = new PdfPaddings(1, 1, 1, 1); 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(6); //設(shè)置列寬 foreach (PdfGridColumn col in grid.Columns) { col.Width = 55f; } //寫入數(shù)據(jù) row1.Cells[0].Value = "新入職員工基本信息"; row2.Cells[0].Value = "入職時間"; row2.Cells[1].Value = "姓名"; row2.Cells[2].Value = "部門"; row2.Cells[3].Value = "學歷"; row2.Cells[4].Value = "聯(lián)系電話"; row2.Cells[5].Value = "正式員工"; row3.Cells[0].Value = "3月"; row3.Cells[1].Value = "馬超"; row3.Cells[2].Value = "研發(fā)部"; row3.Cells[3].Value = "碩士"; row3.Cells[4].Value = "153****6543"; row3.Cells[5].Value = "是"; row4.Cells[0].Value = "4月"; row4.Cells[1].Value = "劉陵"; row4.Cells[2].Value = "研發(fā)部"; row4.Cells[3].Value = "本科"; row4.Cells[4].Value = "176****5464"; row4.Cells[5].Value = "是"; row5.Cells[0].Value = "4月"; row5.Cells[1].Value = "張麗"; row5.Cells[2].Value = "研發(fā)部"; row5.Cells[3].Value = "本科"; row5.Cells[4].Value = "158****4103"; row5.Cells[5].Value = "是"; //水平和垂直方向合并單元格 row1.Cells[0].ColumnSpan = 6; row4.Cells[0].RowSpan = 2; row3.Cells[2].RowSpan = 3; row4.Cells[3].RowSpan = 2; //設(shè)置單元格內(nèi)文字對齊方式 PdfTable table = new PdfTable(); row1.Cells[0].StringFormat = new PdfStringFormat(PdfTextAlignment.Center); row4.Cells[0].StringFormat = new PdfStringFormat(PdfTextAlignment.Justify, PdfVerticalAlignment.Middle); row3.Cells[2].StringFormat = new PdfStringFormat(PdfTextAlignment.Justify, PdfVerticalAlignment.Middle); row4.Cells[3].StringFormat = new PdfStringFormat(PdfTextAlignment.Justify, PdfVerticalAlignment.Middle); //設(shè)置單元格背景顏色 row1.Cells[0].Style.BackgroundBrush = PdfBrushes.LightGreen; //設(shè)置表格邊框顏色、粗細 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(0, 40)); //保存到文檔 doc.SaveToFile("PDF表格.pdf"); System.Diagnostics.Process.Start("PDF表格.pdf"); } } }
效果展示:
感謝各位的閱讀!關(guān)于“C#在PDF文檔中如何創(chuàng)建表格”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!