lbvProt.dll provides a way to highlight hits in PDF files using an Asynchronous Pluggable Protocol.
The procedure to highlight hits in a local PDF file that was retrieved in a search is as follows:
In a .NET application, add a reference to the lbvProt.dll component to your project to access it using COM interop.
C# Sample (using COM interop)
if (pdfHighlighter == null)
pdfHighlighter = new lbvProt.LocalProtocol();
String hl = searchResults.MakePdfWebHighlightFile();
String url = pdfHighlighter.MakePdfUrl(searchResults.DocName, hl);
webBrowser.Navigate(url);|
Copyright (c) 1995-2008 dtSearch Corp. All rights reserved.
|