 | PdfLinkCollectionsGetLinkAtPoint(Single, Single) Method |
Find a link at specified point on a document page
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.111.2704
Syntaxpublic PdfLink GetLinkAtPoint(
float x,
float y
)
Public Function GetLinkAtPoint (
x As Single,
y As Single
) As PdfLink
public:
PdfLink^ GetLinkAtPoint(
float x,
float y
)
member GetLinkAtPoint :
x : float32 *
y : float32 -> PdfLink public PdfLink GetLinkAtPoint(
float x,
float y
)
function GetLinkAtPoint(x, y);
Parameters
- x Single
- The x coordinate of the point, specified in page coordinate system
- y Single
- The y coordinate of the point, specified in page coordinate system
Return Value
PdfLinkInstance of
PdfLink class that represent the found link. Null if there’s no link at that point.
Remarks
See Also