 | Pdfium.FPDFLink_GetRect Method |
Fetch the boundaries of a rectangle for a link
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFLink_GetRect(
IntPtr link_page,
int link_index,
int rect_index,
out double left,
out double top,
out double right,
out double bottom
)
Public Shared Sub FPDFLink_GetRect (
link_page As IntPtr,
link_index As Integer,
rect_index As Integer,
<OutAttribute> ByRef left As Double,
<OutAttribute> ByRef top As Double,
<OutAttribute> ByRef right As Double,
<OutAttribute> ByRef bottom As Double
)
public:
static void FPDFLink_GetRect(
IntPtr link_page,
int link_index,
int rect_index,
[OutAttribute] double% left,
[OutAttribute] double% top,
[OutAttribute] double% right,
[OutAttribute] double% bottom
)
static member FPDFLink_GetRect :
link_page : IntPtr *
link_index : int *
rect_index : int *
left : float byref *
top : float byref *
right : float byref *
bottom : float byref -> unit
public static void FPDFLink_GetRect(
IntPtr link_page,
int link_index,
int rect_index,
/** @attribute OutAttribute */ /** @ref */double left,
/** @attribute OutAttribute */ /** @ref */double top,
/** @attribute OutAttribute */ /** @ref */double right,
/** @attribute OutAttribute */ /** @ref */double bottom
)
Patagames.Pdf.Pdfium.FPDFLink_GetRect = function(link_page, link_index, rect_index, left, top, right, bottom);
Parameters
- link_page IntPtr
- Handle returned by FPDFLink_LoadWebLinks(IntPtr).
- link_index Int32
- Zero-based index for the link
- rect_index Int32
- Zero-based index for a rectangle
- left Double
- Pointer to a double value receiving the rectangle left boundary
- top Double
- Pointer to a double value receiving the rectangle top boundar
- right Double
- Pointer to a double value receiving the rectangle right boundary
- bottom Double
- Pointer to a double value receiving the rectangle bottom boundary
See Also