Click or drag to resize

PdfiumFPDFAction_GetDest Method

Get destination of an action

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static IntPtr FPDFAction_GetDest(
	IntPtr document,
	IntPtr 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

IntPtr
Handle to the destination data
Remarks
In 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