IBrowserReplaceMisspelledWord Method  | 
 
                Replaces misspelled word under cursor on the currently loaded web page with the given word.
                If there is no misspelled word under cursor, this method does nothing.
            
 
    Namespace: 
   DotNetBrowser.Browser
    Assembly:
   DotNetBrowser (in DotNetBrowser.dll) Version: 2.20.0
Syntaxvoid ReplaceMisspelledWord(
	string word
)
Parameters
- word
 - Type: SystemString
a string that represents the word for replacement 
Exceptions| Exception | Condition | 
|---|
| ObjectDisposedException | The IBrowser has already been disposed. | 
| ConnectionClosedException | The connection to the Chromium engine is closed. | 
| ArgumentException | 
                The word is null, empty, or consists only of white-space
                characters.
             | 
See Also