7 references to Speller
PresentationFramework (7)
System\Windows\Controls\CustomDictionarySources.cs (1)
314return _owner.TextEditor.Speller;
System\Windows\Controls\TextBox.cs (2)
1040this.TextEditor.Speller != null) 1042this.TextEditor.Speller.ResetErrors();
System\windows\Documents\TextEditorSpelling.cs (4)
38return This.Speller?.GetError(position, direction, true /* forceEvaluation */); 44if (This.Speller == null) 97return (position == null) ? null : This.Speller.GetError(position, direction, false /* forceEvaluation */); 103return This.Speller?.GetNextSpellingErrorPosition(position, direction);