iTextSharp pdf header

本文关键字:header pdf iTextSharp | 更新日期: 2023-09-27 17:59:18

我正在使用ItextSharp创建PDF文档,但我在创建每页重复的标题表时遇到了问题。

我有一个函数可以用这种方式创建这个表的布局:

public PdfPTable createTabHeader()
    {
        PdfPTable tableIntestazione = new PdfPTable(2);
        PdfPCell cell = new PdfPCell(new Phrase("Rendicontazione"));
        cell.Border = 0;
        cell.BorderWidthBottom = 1;
        cell.BorderColorBottom = BaseColor.LIGHT_GRAY;
        cell.PaddingTop = 45;
        tableIntestazione.AddCell(cell);
        cell = new PdfPCell();
        iTextSharp.text.Image imgLogo = iTextSharp.text.Image.GetInstance(ConfigurationManager.AppSettings["imgLogo"]);
        imgLogo.ScalePercent(10);
        imgLogo.Alignment = iTextSharp.text.Image.ALIGN_RIGHT;
        cell.AddElement(imgLogo);
        cell.Border = 0;
        cell.HorizontalAlignment = 2;
        cell.BorderWidthBottom = 1;
        cell.BorderColorBottom = BaseColor.LIGHT_GRAY;
        tableIntestazione.AddCell(cell);
        tableIntestazione.HeaderRows = 1;
        return tableIntestazione;
    }

我在网上读到,属性"HeaderRows"允许在每一页上显示表格标题,但在我的情况下,它完全隐藏了这个表格。你能帮我吗?

iTextSharp pdf header

不显示表是正常的:您正在创建一个包含两列的表,并向其中添加两个单元格。这意味着您有一个由一行组成的表。您将此行定义为标题行。现在您有了一个表,其中只有一个标题行,没有正文行。由于没有正文行,因此不会渲染标题行。一个表只有表头而没有数据是没有意义的。