CreateCustomActionLink

在 PDF 文档中创建指向自定义操作的链接。

public void CreateCustomActionLink(Rectangle rect, int originalPage, Color color, Enum[] actionName)
范围类型描述
rectRectangle活动点击的矩形。
originalPageInt32将创建与链接绑定的矩形的原始页面数。
colorColor活动点击的矩形颜色。
actionNameEnum[]对应于在 Acrobat 查看器中执行的菜单项的操作数组(PredefinedAction 枚举的成员)。

例子

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

也可以看看