public PdfDestination this[string name]
 {
     get
     {
         var handle = PDFium.FPDF_GetNamedDestByName(_doc.Handle, name);
         return(handle.IsNull ? null : new PdfDestination(_doc, handle, name));
     }
 }