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