在itextsharp中使用表的问题

时间:2011-03-01 11:06:59

标签: c# asp.net pdf-generation itextsharp

我正在尝试使用asp.net c#中的itextsharp生成pdf文件。

我在itextsharp中遇到了表概念,我试图使用它,即我的应用程序。我在使用表格时遇到以下问题。

enter image description here

包含Name of treasery单词treasery的pdf单元格出现在下一行。我为每个细胞设置宽度。如果我增加宽度也没有变化。使用下图中的箭头显示的间隙保持不变。为什么会出现这种差距?如何消除这种差距?

我想要一条虚线作为一个单元格的边框。该怎么做?这是我的代码

    PdfPTable line6table = new PdfPTable (3);
    float[] width = new float[] { 2.5F, 1.5F, 3.0F };
    line6table.SetWidths(width);
    line6table.HorizontalAlignment = 0;
    line6table.WidthPercentage = 100.0f;
    line6table.SpacingBefore = 6.0f;

    PdfPCell a1 = new PdfPCell(new Phrase("Head Of Account"));
    a1.Border = 1;
    a1.Indent = 2.2f;
    a1.PaddingTop = 5.0f;
    line6table.AddCell(a1);

    PdfPCell a2 = new PdfPCell(new Phrase("CHARGED"));
    a2.Border = 1;
    a2.PaddingTop = 5.0f;
    line6table.AddCell(a2);

    PdfPCell a3 = new PdfPCell(new Phrase("Name of the treasry"));
    a3.Border = 0;
    a3.Indent = 15.0f;
    a3.RightIndent = 0.0f;
    a3.HorizontalAlignment = 1;
    line6table.AddCell(a3);


    pdfDocument.Add(line6table);

请帮我解决我的问题。

2 个答案:

答案 0 :(得分:1)

line6table.WidthPercentage = 100.0f;

这对我有用。

但现在我的下一个问题如何将虚线放到单个单元格中?

答案 1 :(得分:0)

增加列的宽度。