如何计数Html单元格';在代码背后

本文关键字:代码 背后 何计数 Html 单元格 | 更新日期: 2023-09-27 18:20:28

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

如何计数Html单元格';在代码背后

试试这个:

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