Esempio n. 1
0
        public PdfBookmark FindBookmark(string title)
        {
            var handle = Pdfium.FPDFBookmark_Find(Handle, title);

            return(handle.IsNull ? null : new PdfBookmark(this, handle));
        }