Adds the new hyperlink area to the
PdfPage.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public PdfActionArea AddHyperlink(
double left,
double top,
double width,
double height,
Uri uri
)
VB
Public Function AddHyperlink (
left As Double,
top As Double,
width As Double,
height As Double,
uri As Uri
) As PdfActionArea
Parameters
- left
- Type: System.Double
The x-coordinate of the upper-left corner of
the hyperlink area. - top
- Type: System.Double
The y-coordinate of the upper-left corner of
the hyperlink area. - width
- Type: System.Double
The width of the hyperlink area. - height
- Type: System.Double
The height of the hyperlink area. - uri
- Type: System.Uri
The uniform resource identifier (URI)
to be resolved when the hyperlink area is activated.
Return Value
Type:
PdfActionArea
The newly created
PdfActionArea object.
See Also