 | PdfiumFPDFLink_GetDest Method |
Get destination info of a link.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFLink_GetDest(
IntPtr document,
IntPtr link
)
Public Shared Function FPDFLink_GetDest (
document As IntPtr,
link As IntPtr
) As IntPtr
public:
static IntPtr FPDFLink_GetDest(
IntPtr document,
IntPtr link
)
static member FPDFLink_GetDest :
document : IntPtr *
link : IntPtr -> IntPtr
public static IntPtr FPDFLink_GetDest(
IntPtr document,
IntPtr link
)
Patagames.Pdf.Pdfium.FPDFLink_GetDest = function(document, link);
Parameters
- document IntPtr
- Handle to the document.
- link IntPtr
- Handle to the link. Returned by FPDFLink_GetLinkAtPoint(IntPtr, Double, Double) function
Return Value
IntPtrHandle to the destination. IntPtr.Zero if there is no destination associated with the link,
in this case the application should try
FPDFLink_GetAction(IntPtr)
See Also