 | PdfiumFPDFBookmark_GetFirstChild Method |
Get first child of a bookmark item, or first top level bookmark item.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFBookmark_GetFirstChild(
IntPtr document,
IntPtr bookmark
)
Public Shared Function FPDFBookmark_GetFirstChild (
document As IntPtr,
bookmark As IntPtr
) As IntPtr
public:
static IntPtr FPDFBookmark_GetFirstChild(
IntPtr document,
IntPtr bookmark
)
static member FPDFBookmark_GetFirstChild :
document : IntPtr *
bookmark : IntPtr -> IntPtr
public static IntPtr FPDFBookmark_GetFirstChild(
IntPtr document,
IntPtr bookmark
)
Patagames.Pdf.Pdfium.FPDFBookmark_GetFirstChild = function(document, bookmark);
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.
- bookmark IntPtr
- Handle to the current bookmark. Can be IntPtr.Zero if you want to get the first top level item.
Return Value
IntPtrHandle to the first child or top level bookmark item. IntPtr.Zero if no child or top level bookmark found
See Also