9 references to Speller
PresentationFramework (9)
src\Framework\System\Windows\Controls\CustomDictionarySources.cs (1)
341return _owner.TextEditor.Speller;
src\Framework\System\Windows\Controls\TextBox.cs (2)
1036this.TextEditor.Speller != null) 1038this.TextEditor.Speller.ResetErrors();
src\Framework\System\windows\Documents\TextEditorSpelling.cs (6)
41return (This.Speller == null) ? null : This.Speller.GetError(position, direction, true /* forceEvaluation */); 47if (This.Speller == null) 100return (position == null) ? null : This.Speller.GetError(position, direction, false /* forceEvaluation */); 106return (This.Speller == null) ? null : This.Speller.GetNextSpellingErrorPosition(position, direction);