【发布时间】:2015-10-10 15:17:10
【问题描述】:
我正在使用 iTextSharp dll 在 C# 中生成 PDF。我需要有链接,这些链接将链接到外部 PDF/文档。
有没有办法促进 target=_blank 模式?所有链接都会导致在原始 PDF 浏览器窗口中呈现另一个 PDF。
我使用以下 c# 代码:
Anchor tool = new Anchor(new Phrase("some text",fontHead3));
tool.Reference = "http://www.google.com", false);
【问题讨论】:
标签: c# pdf itextsharp