Table of Contents

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 PdfPoint

The position of the upper-left corner of the hyperlink area.

size PdfSize

The size of the hyperlink area.

uri Uri

The 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 PdfRectangle

The PdfRectangle structure that specifies the location and the size of the hyperlink area.

uri Uri

The 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 double

The x-coordinate of the upper-left corner of the hyperlink area.

top double

The y-coordinate of the upper-left corner of the hyperlink area.

width double

The width of the hyperlink area.

height double

The height of the hyperlink area.

uri Uri

The uniform resource identifier (URI) to be resolved when the hyperlink area is activated.

Returns

PdfActionArea

The newly created PdfActionArea object.