1

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

4

1 回答 1

1

试试这个:

var noOfCells = table.Rows.Select(r => r.GetCells()).Count();
于 2013-07-01T11:13:03.420 回答