PDFViewCtrlGetLinkAt Method |
Gets the link info at a given point, specified in client space.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public PDFViewCtrlLinkInfo GetLinkAt(
int x,
int y
)
Public Function GetLinkAt (
x As Integer,
y As Integer
) As PDFViewCtrlLinkInfo
public:
virtual PDFViewCtrlLinkInfo^ GetLinkAt(
[InAttribute] int x,
[InAttribute] int y
) sealed
function GetLinkAt(x, y);
Parameters
- x
- Type: SystemInt32
the x position in client space
- y
- Type: SystemInt32
the y position in client space
Return Value
Type:
PDFViewCtrlLinkInfolink information or null if no link is found in the queried location.
Remarks To get valid links, Url extraction must be set to true before setting the document.
See Also