10

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

4

1 に答える 1

21

上部のパディングを小さいもの、または負の値に設定します。別のオプションは PdfPCell.setUseAscender()です。

元:

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

また

cell.UseAscender = true;

お持ちのコードを貼り付けてください。

于 2012-03-12T17:54:22.750 に答える