 | PdfiumFPDFLink_GetLinkAtPoint Method |
Find a link at specified point on a document page
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.111.2704
Syntaxpublic static IntPtr FPDFLink_GetLinkAtPoint(
IntPtr page,
double x,
double y
)
Public Shared Function FPDFLink_GetLinkAtPoint (
page As IntPtr,
x As Double,
y As Double
) As IntPtr
public:
static IntPtr FPDFLink_GetLinkAtPoint(
IntPtr page,
double x,
double y
)
static member FPDFLink_GetLinkAtPoint :
page : IntPtr *
x : float *
y : float -> IntPtr public static IntPtr FPDFLink_GetLinkAtPoint(
IntPtr page,
double x,
double y
)
Patagames.Pdf.Pdfium.FPDFLink_GetLinkAtPoint = function(page, x, y);
Parameters
- page IntPtr
- Handle to the document page. Returned by FPDF_LoadPage(IntPtr, Int32) function
- x Double
- The x coordinate of the point, specified in page coordinate system
- y Double
- The y coordinate of the point, specified in page coordinate system
Return Value
IntPtrHandle to the link. IntPtr.Zero if there’s no link at that point.
Remarks
See Also