ITextSharpのテーブルに問題があります。上下のパディングのないセルを作成して、セルが互いに近くに配置されるようにします。
セルのパディングと先頭を0に設定しましたが、空白は残っています。
空白を削除する方法を知っている人はいますか?
編集:
ディランからの迅速な回答に感謝します。問題を解決することができました。誰かが同様の問題に遭遇した場合のソーススニペットは次のとおりです
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