I am displaying a web page using the .NET WebBrowser control. I am then using the IHTMLDocument2 to capture the text that the user has highlighted as shown below:
IHTMLDocument2 htmlDocument = webBrowser.Document.DomDocument as IHTMLDocument2;
IHTMLSelectionObject currentSelection = htmlDocument.selection;
if (currentSelection != null)
{
IHTMLTxtRange range = currentSelection.createRange() as IHTMLTxtRange;
if (htmlDocument != null)
{
Console.Write(range.htmlText);
}
}
However the value in the range.htmlText differs from the actual source, such as the removal of "" (in some cases) and the inclusion of "\r\n" in other cases. Do you know of any work around or why this might be happening?
Ex:
Original Source:
"<a href="/wiki/Manhattan" title="Manhattan">Manhattan</a>, <a href="/wiki/New_York_City" title="New York City">New York City</a>, United States"
range.htmlText
"<A title=Manhattan href=\"/wiki/Manhattan\">Manhattan</A>, <A \r\ntitle=\"New York City\" href=\"/wiki/New_York_City\">New York City</A>, United \r\nStates"
Thank you, your help is greatly appreciated.
Kevin