PdfContentEditor.CreateLocalLink

Creates a local link in PDF document.

public void CreateLocalLink(Rectangle rect, int desPage, int originalPage, Color clr, 
    Enum[] actionName)
ParameterTypeDescription
rectRectangleThe rectangle for active click.
desPageInt32The destination page.
originalPageInt32The number of original page where rectangle bound with local link will be created.
clrColorThe colour of rectangle for active click.
actionNameEnum[]The array of actions (members of PredefinedAction enum) corresponding to executing menu items in Acrobat viewer.

Examples

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

See Also


Creates a local link in PDF document.

public void CreateLocalLink(Rectangle rect, int desPage, int originalPage, Color clr)
ParameterTypeDescription
rectRectangleThe rectangle for active click.
desPageInt32The destination page.
originalPageInt32The number of original page where rectangle bound with local link will be created.
clrColorThe colour of rectangle for active click.

Examples

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

See Also


Creates a local link in PDF document.

public void CreateLocalLink(Rectangle rect, int desPage, int originalPage)
ParameterTypeDescription
rectRectangleThe rectangle for active click.
desPageInt32The destination page.
originalPageInt32The number of original page where rectangle bound with local link will be created.

Examples

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

See Also