PdfContentEditor.CreateWebLink
Contents
[
Hide
]CreateWebLink(Rectangle, string, int, Color, Enum[])
Creates a web link in PDF document.
public void CreateWebLink(Rectangle rect, string url, int originalPage, Color clr,
Enum[] actionName)
Parameter | Type | Description |
---|---|---|
rect | Rectangle | The rectangle for active click. |
url | String | The web link destination. |
originalPage | Int32 | The number of original page on which rectangle bound with web link will be created. |
clr | Color | The colour of rectangle for active click. |
actionName | Enum[] | 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.CreateWebLink(new System.Drawing.Rectangle(0, 0, 100, 100),
"http://www.aspose.com", 1, System.Drawing.Color.Red,
new Enum[] { PredefinedAction.FirstPage, PredefinedAction.PrintDialog });
editor.Save("example_out.pdf");
See Also
- class PdfContentEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
CreateWebLink(Rectangle, string, int, Color)
Creates a web link in PDF document.
public void CreateWebLink(Rectangle rect, string url, int originalPage, Color clr)
Parameter | Type | Description |
---|---|---|
rect | Rectangle | The rectangle for active click. |
url | String | The web link destination. |
originalPage | Int32 | The number of original page where rectangle bound with web link will be created. |
clr | Color | The colour of rectangle for active click. |
Examples
PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreateWebLink(new System.Drawing.Rectangle(0, 0, 100, 100),
"http://www.aspose.com", 1, System.Drawing.Color.Red });
editor.Save("example_out.pdf");
See Also
- class PdfContentEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF
CreateWebLink(Rectangle, string, int)
Creates a web link in PDF document.
public void CreateWebLink(Rectangle rect, string url, int originalPage)
Parameter | Type | Description |
---|---|---|
rect | Rectangle | The rectangle for active click. |
url | String | The web link destination. |
originalPage | Int32 | The number of original page where rectangle bound with web link will be created. |
Examples
PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreateWebLink(new System.Drawing.Rectangle(0, 0, 100, 100), "http://www.aspose.com", 1 });
editor.Save("example_out.pdf");
See Also
- class PdfContentEditor
- namespace Aspose.Pdf.Facades
- assembly Aspose.PDF