I would like to add a link to an existing pdf that jumps to a coordinate on another page.
I am able to add a rectangle using this code:
PdfContentByte overContent = stamper.GetOverContent(1);
iTextSharp.text.Rectangle rectangle = new Rectangle(10,10,100,100,0);
rectangle.BackgroundColor = BaseColor.BLUE;
overContent.Rectangle(rectangle);
stamper.Close();
How can I do similar to create a link that is clickable? Thanks.