Adds the new link area to the
PdfPage.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public PdfActionArea AddLinkToPage(
double left,
double top,
double width,
double height,
int pageIndex,
double topOffset
)
VB
Public Function AddLinkToPage (
left As Double,
top As Double,
width As Double,
height As Double,
pageIndex As Integer,
topOffset As Double
) As PdfActionArea
Parameters
- left
- Type: System.Double
The x-coordinate of the upper-left corner of
the link area. - top
- Type: System.Double
The y-coordinate of the upper-left corner of
the link area. - width
- Type: System.Double
The width of the link area. - height
- Type: System.Double
The height of the link area. - pageIndex
- Type: System.Int32
Index of the page to be displayed when
the link area is activated. - topOffset
- Type: System.Double
The vertical coordinate of the page that
should be positioned at the top edge of the window when the link
target page is displayed.
Return Value
Type:
PdfActionArea
The newly created
PdfActionArea object.
See Also