1 instantiation of SpellingError
PresentationFramework (1)
System\Windows\Documents\Speller.cs (1)
124error = new SpellingError(this, start, end);
20 references to SpellingError
PresentationFramework (20)
System\Windows\Controls\RichTextBox.cs (2)
221public SpellingError GetSpellingError(TextPointer position) 244SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection);
System\Windows\Controls\TextBox.cs (4)
473public SpellingError GetSpellingError(int charIndex) 479SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 503SpellingError spellingError = GetSpellingError(charIndex); 520SpellingError spellingError = GetSpellingError(charIndex);
System\Windows\Documents\Speller.cs (4)
106internal SpellingError GetError(ITextPointer position, LogicalDirection direction, bool forceEvaluation) 110SpellingError error; 167SpellingError spellingError = GetError(position, direction, false /* forceEvaluation */); 175internal List<string> GetSuggestionsForError(SpellingError error)
System\windows\Documents\TextEditor.cs (2)
398internal SpellingError GetSpellingErrorAtPosition(ITextPointer position, LogicalDirection direction) 404internal SpellingError GetSpellingErrorAtSelection()
System\windows\Documents\TextEditorContextMenu.cs (2)
173SpellingError spellingError = (contextMenu is EditorContextMenu) ? This.GetSpellingErrorAtSelection() : null; 477SpellingError spellingError;
System\windows\Documents\TextEditorSpelling.cs (6)
35internal static SpellingError GetSpellingErrorAtPosition(TextEditor This, ITextPointer position, LogicalDirection direction) 41internal static SpellingError GetSpellingErrorAtSelection(TextEditor This) 129SpellingError spellingError = GetSpellingErrorAtSelection(This); 179private static bool IsErrorAtNonMergeableInlineEdge(SpellingError spellingError, out ITextPointer textStart, out ITextPointer textEnd) 227SpellingError spellingError = GetSpellingErrorAtSelection(This); 244SpellingError spellingError = GetSpellingErrorAtSelection(This);