我正在使用方法来绑定数据库中的数据以填写 PdfPTable,我使用此方法按单元格添加数据
dfPTable table = new PdfPTable(3);
PdfPCell cell = new PdfPCell(new Paragraph("header with colspan 3"));
cell.BackgroundColor = Color.GRAY;
cell.Colspan = 3;
cell.HorizontalAlignment = Element.ALIGN_CENTER;
cell.Border = PdfBorderArray.BOOLEAN;
cell.BorderColor = Color.RED;
table.AddCell(cell);
如何使用 ASP.net 计算 PdfPTable 后面代码中的 Html 单元格