FPDFLink_GetDest function
- @Native<FPDF_DEST Function(FPDF_DOCUMENT document, FPDF_LINK link)>(FPDF_DOCUMENT, FPDF_LINK)>()
- FPDF_DOCUMENT document,
- FPDF_LINK link
Get destination info for |link|.
document - handle to the document. link - handle to the link.
Returns a handle to the destination, or NULL if there is no destination associated with the link. In this case, you should call FPDFLink_GetAction() to retrieve the action associated with |link|.
Implementation
@ffi.Native<FPDF_DEST Function(FPDF_DOCUMENT, FPDF_LINK)>()
external FPDF_DEST FPDFLink_GetDest(FPDF_DOCUMENT document, FPDF_LINK link);