Method AddHyperlink
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
AddHyperlink(PdfPoint, PdfSize, Uri)
Adds the new hyperlink area to the PdfPage.
public PdfActionArea AddHyperlink(PdfPoint position, PdfSize size, Uri uri)
Parameters
position
PdfPointThe position of the upper-left corner of the hyperlink area.
size
PdfSizeThe size of the hyperlink area.
uri
UriThe uniform resource identifier (URI) to be resolved when the hyperlink area is activated.
Returns
- PdfActionArea
The newly created PdfActionArea object.
AddHyperlink(PdfRectangle, Uri)
Adds the new hyperlink area to the PdfPage.
public PdfActionArea AddHyperlink(PdfRectangle boundingBox, Uri uri)
Parameters
boundingBox
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the hyperlink area.
uri
UriThe uniform resource identifier (URI) to be resolved when the hyperlink area is activated.
Returns
- PdfActionArea
The newly created PdfActionArea object.
AddHyperlink(double, double, double, double, Uri)
Adds the new hyperlink area to the PdfPage.
public PdfActionArea AddHyperlink(double left, double top, double width, double height, Uri uri)
Parameters
left
doubleThe x-coordinate of the upper-left corner of the hyperlink area.
top
doubleThe y-coordinate of the upper-left corner of the hyperlink area.
width
doubleThe width of the hyperlink area.
height
doubleThe height of the hyperlink area.
uri
UriThe uniform resource identifier (URI) to be resolved when the hyperlink area is activated.
Returns
- PdfActionArea
The newly created PdfActionArea object.