This is probably quite simple, but I can't seem to figure out how to pass the reference or even if it's possible. I've banged together a quick and dirty HTML editor using design mode on an mshtml.HtmlDocument object and I'd like to know if I can spell check within that instead of the traditional text box control as seen in the examples. I made a messy work around that involves a hidden text box that gets updated on every change, but that only works for the "all at once", and not the "as you type" spell checking (and only works on the InnerText as opposed to InnerHTML, since every HTML tag of course shows up as a typo).
I think it's possible, but I have been reading about how much of a pain it is to get the mshtml object to play ball with traditional .Net references, and was hoping someone here had an idea of where to start.