 | PdfiumFPDFLink_Enumerate Method |
This function would enumerate all the link annotations in a single PDF page.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFLink_Enumerate(
IntPtr page,
ref int start_pos,
out IntPtr link_annot
)
Public Shared Function FPDFLink_Enumerate (
page As IntPtr,
ByRef start_pos As Integer,
<OutAttribute> ByRef link_annot As IntPtr
) As Boolean
public:
static bool FPDFLink_Enumerate(
IntPtr page,
int% start_pos,
[OutAttribute] IntPtr% link_annot
)
static member FPDFLink_Enumerate :
page : IntPtr *
start_pos : int byref *
link_annot : IntPtr byref -> bool
public static boolean FPDFLink_Enumerate(
IntPtr page,
/** @ref */int start_pos,
/** @attribute OutAttribute */ /** @ref */IntPtr link_annot
)
Patagames.Pdf.Pdfium.FPDFLink_Enumerate = function(page, start_pos, link_annot);
Parameters
- page IntPtr
- Handle to the page. Returned by FPDF_LoadPage(IntPtr, Int32) function
- start_pos Int32
- The start position to enumerate the link annotations, which should be specified to start
from - 0 for the first call, and would receive the next position for enumerating to start from.
- link_annot IntPtr
- Receive the link handle
Return Value
BooleanTRUE if succceed, else False;
See Also