使用itextsharp和c#在Pdf中锚定标记

时间:2017-05-04 10:41:16

标签: c# itext

我正在尝试为pdfcell中的文本创建一个锚标记,因此在单击时,它应该跳转到pdf文档中的目标页面。

以下是我正在使用的代码。

oCell = new PdfPCell();

string text = "Target Page";

Anchor anchor = new Anchor(text, fontBody);

anchor.Reference = "#Target";

oCell.AddElement(new Phrase(anchor));

它只显示文本为"目标页面",但没有指向文本的超链接。

0 个答案:

没有答案