PdfContentEditor.CreateJavaScriptLink

Creates a link to JavaScript in PDF document.

public void CreateJavaScriptLink(string code, Rectangle rect, int originalPage, Color color)
ParameterTypeDescription
codeStringThe JavaScript code.
rectRectangleThe rectangle for active click.
originalPageInt32The number of original page where rectangle bound with link will be created.
colorColorThe colour of rectangle for active click.

Examples

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreateJavaScriptLink("app.alert('welcome to aspose!');",
    new System.Drawing.Rectangle(0, 0, 100, 100), 1, System.Drawing.Color.Red });
editor.Save("example_out.pdf");

See Also