 | PdfBookmarkCollectionsFind Method |
Find a bookmark in the PDF document, using the bookmark title
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic PdfBookmark Find(
string title
)
Public Function Find (
title As String
) As PdfBookmark
public:
PdfBookmark^ Find(
String^ title
)
member Find :
title : string -> PdfBookmark
public PdfBookmark Find(
String title
)
Parameters
- title String
- The string for the bookmark title to be searched. Can't be NULL or empty string.
Return Value
PdfBookmarkThe instance of PdfBookmark class represented a found bookmark item. Null 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