在iTextSharp中隐藏表格边框

时间:2013-07-31 20:26:32

标签: c# .net itextsharp

如何使用iTextSharp隐藏表格边框。我使用以下代码生成文件:

var document = new Document(PageSize.A4, 50, 50, 25, 25);

// Create a new PdfWriter object, specifying the output stream
var output = new MemoryStream();
var writer = PdfWriter.GetInstance(document, output);

document.Open();
PdfPTable table = new PdfPTable(3);
var bodyFont = FontFactory.GetFont("Arial", 10, Font.NORMAL);
PdfPCell cell = new PdfPCell(new Phrase("Header spanning 3 columns"));
cell.Colspan = 3;
cell.HorizontalAlignment = 1; //0=Left, 1=Centre, 2=Right
table.AddCell(cell);
Font arial = FontFactory.GetFont("Arial", 6, BaseColor.BLUE);
cell = new PdfPCell(new Phrase("Font test is here ", arial));
cell.PaddingLeft = 5f;
cell.Colspan = 1;
table.AddCell(cell);
cell = new PdfPCell(new Phrase("XYX"));
cell.Colspan = 2;
table.AddCell(cell);
cell = new PdfPCell(new Phrase("Hello World"));
cell.PaddingLeft = 5f;
cell.Colspan = 1;
table.AddCell(cell);
cell = new PdfPCell(new Phrase("XYX"));
cell.Colspan = 2;
table.AddCell(cell);



table.SpacingBefore = 5f;
document.Add(table);
document.Close();

Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition", "attachment;filename=Receipt-test.pdf");
Response.BinaryWrite(output.ToArray());

我是否需要为单个单元格指定无边框,或者我可以为表格本身指定无边框。

谢谢

6 个答案:

答案 0 :(得分:67)

虽然我对Martijn的回答表示赞同,但我想补充一点澄清。

只有单元格在iText中有边框;桌子没有边框。 Martijn建议将默认单元格的边框设置为NO_BORDER是正确的:

table.DefaultCell.Border = Rectangle.NO_BORDER;

但它不适用于问题中提供的代码段。仅当iText需要隐式创建PdfPCell实例时才使用默认单元格的属性(例如:如果使用addCell()方法传递Phrase作为参数)。

在@Brown_Dynamite提供的代码段中,显式创建了PdfPCell个对象。这意味着您需要将每个单元格的边框设置为NO_BORDER

通常,我会编写一个工厂类来创建单元格。这样,我可以显着减少创建表的类中的代码量。

答案 1 :(得分:9)

这应该可以解决问题:

table.DefaultCell.Border = Rectangle.NO_BORDER; 

table.borderwidth= 0;

答案 2 :(得分:8)

首先我们可以将所有单元格边框设置为0,并且在将所有单元格分配给表格之后,我们可以将以下代码用于仅pdfptable外边框。

        PdfPCell cell = new PdfPCell();
        cell.AddElement(t);
        cell.BorderWidthBottom=1f;
        cell.BorderWidthLeft=1f;
        cell.BorderWidthTop=1f;
        cell.BorderWidthRight = 1f;
        PdfPTable t1 = new PdfPTable(1);
        t1.AddCell(cell);

在这里,我们可以将表格添加到一个单元格中,并可以设置边框并再次将该单元格添加到另一个表格中,我们可以按照我们的要求使用。

答案 3 :(得分:3)

如果您的PdfPTable嵌套在另一个PdfPTable中,嵌套表将显示表格边框。摆脱表格边框的唯一方法是将嵌套的PdfPTable放入主PdfPTable的PdfPCell中,并将该单元格的边框宽度设置为0.

iTextSharp.text.pdf.PdfPTable table = new iTextSharp.text.pdf.PdfPTable(1); //<-- Main table
table.TotalWidth = 540f;
table.LockedWidth = true;
float[] widths = new float[] { 540f };
table.SetWidths(widths);
table.HorizontalAlignment = 1; //0=Left, 1=Centre, 2=Right
table.SpacingAfter = 10;

PdfPTable bodyTable = new PdfPTable(1); //<--Nested Table
bodyTable.TotalWidth = 540f;
bodyTable.LockedWidth = true;
float[] bodyWidths = new float[] { 540f };
bodyTable.SetWidths(bodyWidths);
bodyTable.HorizontalAlignment = 0;
bodyTable.SpacingAfter = 10;
bodyTable.DefaultCell.Border = iTextSharp.text.Rectangle.NO_BORDER;

var para1 = new Paragraph("This is a long paragraph", blackNormal);
para1.SetLeading(3f, 1f);
PdfPCell bodyCell1 = new PdfPCell();
bodyCell1.AddElement(para1);
bodyCell1.Border = 0;
bodyTable.AddCell(bodyCell1);

iTextSharp.text.pdf.PdfPCell cellBody = new iTextSharp.text.pdf.PdfPCell(bodyTable);
cellBody.BorderWidth = 0; //<--- This is what sets the border for the nested table
table.AddCell(cellBody);

花了很长时间才弄明白这一点。它现在适用于我。

答案 4 :(得分:2)

PdfPTable table = new PdfPTable(4);
table.TotalWidth = 400f;
table.LockedWidth = true;
PdfPCell header = new PdfPCell(new Phrase("Header"));
header.Colspan = 4;
table.AddCell(header);
table.AddCell("Cell 1");
table.AddCell("Cell 2");
table.AddCell("Cell 3");
table.AddCell("Cell 4");
PdfPTable nested = new PdfPTable(1);
nested.AddCell("Nested Row 1");
nested.AddCell("Nested Row 2");
nested.AddCell("Nested Row 3");
PdfPCell nesthousing = new PdfPCell(nested);
nesthousing.Padding = 0f;
table.AddCell(nesthousing);
PdfPCell bottom = new PdfPCell(new Phrase("bottom"));
bottom.Colspan = 3;
table.AddCell(bottom);
doc.Add(table);

PdfPTable table = new PdfPTable(3);
table.TotalWidth = 144f;
table.LockedWidth = true;
table.HorizontalAlignment = 0;
PdfPCell left = new PdfPCell(new Paragraph("Rotated"));
left.Rotation = 90;
table.AddCell(left);
PdfPCell middle = new PdfPCell(new Paragraph("Rotated"));
middle.Rotation = -90;
table.AddCell(middle);
table.AddCell("Not Rotated");
doc.Add(table);

检查this link

答案 5 :(得分:0)

试试这段代码

 yourtable.DefaultCell.Border = 0;