Spell Checker
In This Article
Corrects a spelling error in a word under the cursor. This code provider suggests some similar words to replace the misspelled word. Choose the desired word from the drop-down list, or if you are sure that the underlined word is correct, click Add to Dictionary.
Note
The code provider is enabled if Spell Checker is enabled. (To enable spell checker, check the Enabled check box on the Spell Checker options page or enable the appropriate button on the DXCore Visualize toolbar).
#Availability
From the context menus or via shortcuts:
- when the edit cursor or caret is on a missplelled word.
#Example
string s = "Test │strign";
Dim s As String = "Test │strign"
Result:
string s = "Test │string";
Dim s As String = "Test │string"