Hi, I have a problem because if I use SearchText function, the current page works fine but I don't understand why not works in all other pages.
I found a valid algorythm in older versions of Spire.PDF but this isn't compatible with the current one:
PdfTextFind[] result = null;
foreach (PdfPageBase page in pdf.Pages)
{
result = page.FindText([Searched Text]).Finds;
foreach (PdfTextFind find in result)
{
find.ApplyHighLight();
}
}
Anyone knows a solution?
Greatings
Damiano