10

ITextSharp 的表格有问题。我想要没有顶部和底部填充的单元格,以便它们彼此靠近。

尽管我已将单元格的填充和前导设置为 0,但空白仍然存在。

看画面

有谁知道如何删除空格?

编辑:

感谢 Dylan 的及时回答,我已经设法解决了我的问题。如果有人遇到类似问题,这是源代码片段

        Document document = new Document(PageSize.A4, 5, 5, 10, 10);
        using (FileStream fs = new FileStream("C:\\Users\\brum\\Desktop\\untitled.pdf", FileMode.Create))
        {
            iTextSharp.text.pdf.PdfWriter.GetInstance(document, fs);
            document.Open();
            PdfPTable table = new PdfPTable(2);
            PdfPCell cell = new PdfPCell(new Phrase("Spanning 2 cols"));

            cell.Colspan = 2;
            cell.HorizontalAlignment = 1;
            cell.Padding = 0f;
            cell.UseAscender = true;
            table.AddCell(cell);

            table.AddCell("Next row 1");
            table.AddCell("Next row 2");

            document.Add(table);
            document.Close();
        }

cell.UseAscender = true; // This is the line that did the trick for me

4

1 回答 1

21

将顶部填充设置为小的甚至是负数。另一种选择是 PdfPCell.setUseAscender()

前任:

cell.setPaddingTop(0f);  // No padding on top cell

或者

cell.UseAscender = true;

请粘贴您的代码。

于 2012-03-12T17:54:22.750 回答