PdfPage.AddHyperlink Method (PdfPoint, PdfSize, Uri)

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(
	PdfPoint position,
	PdfSize size,
	Uri uri
)
VB
Public Function AddHyperlink ( 
	position As PdfPoint,
	size As PdfSize,
	uri As Uri
) As PdfActionArea

Parameters

position
Type: BitMiracle.Docotic.Pdf.PdfPoint
The position of the upper-left corner of the hyperlink area.
size
Type: BitMiracle.Docotic.Pdf.PdfSize
The size 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