PDFViewCtrl.GetLinkAt 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
Syntaxpublic 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: System.Int32
the x position in client space
- y
- Type: System.Int32
the y position in client space
Return Value
Type:
PDFViewCtrlLinkInfolink information or null if no link is found in the queried location.
RemarksTo get valid links, Url extraction must be set to true before setting the document.
See Also