如何在代码背后计算Html单元格?

时间:2013-07-01 11:05:38

标签: c# asp.net itextsharp

我正在使用方法从数据库绑定数据以填充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单元格

1 个答案:

答案 0 :(得分:1)

试试这个:

var noOfCells = table.Rows.Select(r => r.GetCells()).Count();