Jump to content

How to search text in a pdf file?


55143681

Recommended Posts

Hi,

Can you try this?

 

 


  with UniPDFFrame1, JSInterface do
  begin
    UniSession.AddJS('var pdfApp = document.getElementsByName('+JSName+'.ifName)[0].contentWindow.PDFViewerApplication; '+
                     ' pdfApp.findBar.open(); '+
                     ' pdfApp.findBar.findField.value = "large"; '+
                     ' pdfApp.findBar.caseSensitive.checked = true; '+
                     ' pdfApp.findBar.highlightAll.checked = true; '+
                     ' pdfApp.findBar.findNextButton.click();');
  end;

 

Link to comment
Share on other sites

  • 3 years later...

Just for information in case someone needs to perform this procedure, this is the adjusted way to execute the search and not give error in a second search.

 

  with UniPDFFrame1, JSInterface do
  begin
    UniSession.AddJS(
    'var pdfApp = document.getElementsByName('+JSName+'.ifName)[0].contentWindow.PDFViewerApplication; '+
    '    pdfApp.findBar.open();'+
    '    $(pdfApp.findBar.findField).val("'+vP+'");'+
    '    var event = document.createEvent("CustomEvent");'+
    '    event.initCustomEvent("findagain", true, true, {'+
    '        query: "'+vP+'",'+
    '        caseSensitive: $("#findMatchCase").prop("checked"),'+
    '        highlightAll: $("#findHighlightAll").prop("checked", true),'+
    '        findPrevious: undefined'+
    '    });'+
    '    pdfApp.findBar.dispatchEvent("");'+
    '    ');
  end;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...