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