 | PdfiumFPDFAction_GetDest Method |
Get destination of an action
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFAction_GetDest(
IntPtr document,
IntPtr action
)
Public Shared Function FPDFAction_GetDest (
document As IntPtr,
action As IntPtr
) As IntPtr
public:
static IntPtr FPDFAction_GetDest(
IntPtr document,
IntPtr action
)
static member FPDFAction_GetDest :
document : IntPtr *
action : IntPtr -> IntPtr
public static IntPtr FPDFAction_GetDest(
IntPtr document,
IntPtr action
)
Patagames.Pdf.Pdfium.FPDFAction_GetDest = function(document, action);
Parameters
- document IntPtr
- Handle to the document. Returned by FPDF_LoadDocument(String, String), FPDF_LoadMemDocument(Byte, Int32, String) or FPDF_LoadCustomDocument(FPDF_FILEACCESS, String) functions.
- action IntPtr
- Handle to the action. It must be a GOTO or REMOTEGOTO action
Return Value
IntPtrHandle to the destination data
RemarksIn case of remote goto action, the application should first use
FPDFAction_GetFilePath(IntPtr)
to get file path, then load that particular document, and use its document handle to call this function
See Also