 | PdfiumFPDFBookmark_Find Method |
Find a bookmark in the document, using the bookmark title
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFBookmark_Find(
IntPtr document,
string title
)
Public Shared Function FPDFBookmark_Find (
document As IntPtr,
title As String
) As IntPtr
public:
static IntPtr FPDFBookmark_Find(
IntPtr document,
String^ title
)
static member FPDFBookmark_Find :
document : IntPtr *
title : string -> IntPtr
public static IntPtr FPDFBookmark_Find(
IntPtr document,
String title
)
Patagames.Pdf.Pdfium.FPDFBookmark_Find = function(document, title);
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
- title String
- The string for the bookmark title to be searched. Can't be NULL.
Return Value
IntPtrHandle to the found bookmark item. IntPtr.Zero if the title can't be found.
RemarksIt always returns the first found bookmark if more than one bookmarks have the same title.
See Also