Question
1
Replies
261
Views
Posted: May 6, 2018
Last activity: May 7, 2018
Closed
PDF - There are a lot of "Bank Reference" keyword in every page of my pdf. I need to search every Bank Reference word via PDF connector.
Hi, i already tried Find Line but it only gets 1 Bank Reference in a page then goes to search to another page. The problem is that i have lots of Bank Reference in page 1. How can i search for all the Bank Reference in each page before going to the second page. Thanks!
This is what the searchAfter parameter is for. The FindLine method has several overloads with various options. Basically, you'd start with the simplest one and locate the first line. Then you can use the overloaded method with the search After parameter and pass it the result line from the previous find (and so on and so forth). The searchAfter parameter will resume searching but start from the line that is passed in; essentially allowing you to daisy-chain them together.