CreatePdfDocumentLink

创建指向另一个 PDF 文档页面的链接。

public void CreatePdfDocumentLink(Rectangle rect, string remotePdf, int originalPage, 
    int destinationPage, Color clr, Enum[] actionName)
范围类型描述
rectRectangle活动点击的矩形。
remotePdfString将打开哪个页面的 PDF 文档。
originalPageInt32将创建与链接绑定的矩形的原始页面数。
destinationPageInt32目标页面。
clrColor活动点击的矩形颜色。
actionNameEnum[]对应于在 Acrobat 查看器中执行的菜单项的操作数组(PredefinedAction 枚举的成员)。

例子

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreatePdfDocumentLink(new System.Drawing.Rectangle(0, 0, 100, 100),
    "another_example.pdf", 1, 1, System.Drawing.Color.Red,
    new Enum[] { PredefinedAction.FirstPage, PredefinedAction.PrintDialog });
editor.Save("example_out.pdf");

也可以看看


创建指向另一个 PDF 文档页面的链接。

public void CreatePdfDocumentLink(Rectangle rect, string remotePdf, int originalPage, 
    int destinationPage, Color clr)
范围类型描述
rectRectangle活动点击的矩形。
remotePdfString将打开哪个页面的 PDF 文档。
originalPageInt32将创建与链接绑定的矩形的原始页面数。
destinationPageInt32目标页面。
clrColor活动点击的矩形颜色。

例子

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreatePdfDocumentLink(new System.Drawing.Rectangle(0, 0, 100, 100),
    "another_example.pdf", 1, 1, System.Drawing.Color.Red });
editor.Save("example_out.pdf");

也可以看看


创建指向另一个 PDF 文档页面的链接。

public void CreatePdfDocumentLink(Rectangle rect, string remotePdf, int originalPage, 
    int destinationPage)
范围类型描述
rectRectangle活动点击的矩形。
remotePdfString将打开哪个页面的 PDF 文档。
originalPageInt32将创建与链接绑定的矩形的原始页面数。
destinationPageInt32目标页面。

例子

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreatePdfDocumentLink(new System.Drawing.Rectangle(0, 0, 100, 100), "another_example.pdf", 1, 1 });
editor.Save("example_out.pdf");

也可以看看