I just need exactly those visual attributes (font, size, color, etc.) that the WebBrowser itself use to render the text. They have to be somewhere otherwise the WebBrowser wouldn't know how to show the text.
views:
27answers:
1
A:
Take a look at HtmlElement.Style - it's a list of CSS styles. You can get HtmlElements from the HtmlDocument (e.g. document.Links gives you all the links). Also, you should only get the HtmlDocument once the browser.DocumentCompleted event fires.
Chad
2010-06-23 17:57:13