我正在使用方法从数据库绑定数据以填充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单元格
答案 0 :(得分:1)
试试这个:
var noOfCells = table.Rows.Select(r => r.GetCells()).Count();