iTextSharp PdfPCell与Chunk对齐

时间:2014-07-30 10:10:25

标签: c# itextsharp pdfptable

我正在使用iTextSharp以编程方式创建PDF并生成PdfPTable。

在某些细胞中,我需要有一个超链接。

没有超链接我可以水平和垂直对齐单元格中的文本,但是当我添加包含我的超链接的块时,单元格会丢失其对齐属性。

这是我的代码......

var webAddress = new Chunk(row["product_code"].ToString(), linkFont);
webAddress.SetAnchor(row["url"].ToString());

PdfPCell ProductCodeCell = new PdfPCell();
ProductCodeCell.AddElement(webAddress);
ProductCodeCell.VerticalAlignment = Element.ALIGN_MIDDLE;
ProductCodeCell.HorizontalAlignment = Element.ALIGN_CENTER;
ProductCodeCell.Padding = 3f;
table.AddCell(ProductCodeCell);

有人可以帮我调整链接吗?

非常感谢。

1 个答案:

答案 0 :(得分:6)

有关文字模式复合模式的讨论,请参阅this answer。基本上,如果使用AddElement(),则需要在对象上设置对齐而不是单元格本身。但是,Chunk没有对齐,所以你需要将你的块包装在Paragraph的内容中。

var table = new PdfPTable(1);

//Create our chunk with anchor
var webAddress = new Chunk("hello");
webAddress.SetAnchor("http://www.example.net/");

//Create a paragraph holding the chunk and set the alignment on _it_
var para = new Paragraph(webAddress);
para.Alignment = Element.ALIGN_CENTER;

//Create our cell
PdfPCell ProductCodeCell = new PdfPCell();

//Add the paragrph to it
ProductCodeCell.AddElement(para);

//Padding on the cell still works
ProductCodeCell.Padding = 30f;

//Add cell to table
table.AddCell(ProductCodeCell);