1 instantiation of SpellingError
PresentationFramework (1)
System\Windows\Documents\Speller.cs (1)
125error = new SpellingError(this, start, end);
20 references to SpellingError
PresentationFramework (20)
System\Windows\Controls\RichTextBox.cs (2)
222public SpellingError GetSpellingError(TextPointer position) 245SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection);
System\Windows\Controls\TextBox.cs (4)
472public SpellingError GetSpellingError(int charIndex) 478SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 502SpellingError spellingError = GetSpellingError(charIndex); 519SpellingError spellingError = GetSpellingError(charIndex);
System\Windows\Documents\Speller.cs (4)
107internal SpellingError GetError(ITextPointer position, LogicalDirection direction, bool forceEvaluation) 111SpellingError error; 168SpellingError spellingError = GetError(position, direction, false /* forceEvaluation */); 176internal List<string> GetSuggestionsForError(SpellingError error)
System\windows\Documents\TextEditor.cs (2)
407internal SpellingError GetSpellingErrorAtPosition(ITextPointer position, LogicalDirection direction) 413internal SpellingError GetSpellingErrorAtSelection()
System\windows\Documents\TextEditorContextMenu.cs (2)
174SpellingError spellingError = (contextMenu is EditorContextMenu) ? This.GetSpellingErrorAtSelection() : null; 478SpellingError spellingError;
System\windows\Documents\TextEditorSpelling.cs (6)
36internal static SpellingError GetSpellingErrorAtPosition(TextEditor This, ITextPointer position, LogicalDirection direction) 42internal static SpellingError GetSpellingErrorAtSelection(TextEditor This) 130SpellingError spellingError = GetSpellingErrorAtSelection(This); 180private static bool IsErrorAtNonMergeableInlineEdge(SpellingError spellingError, out ITextPointer textStart, out ITextPointer textEnd) 228SpellingError spellingError = GetSpellingErrorAtSelection(This); 245SpellingError spellingError = GetSpellingErrorAtSelection(This);