1 instantiation of SpellingError
PresentationFramework (1)
System\Windows\Documents\Speller.cs (1)
128error = new SpellingError(this, start, end);
20 references to SpellingError
PresentationFramework (20)
System\Windows\Controls\RichTextBox.cs (2)
226public SpellingError GetSpellingError(TextPointer position) 249SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection);
System\Windows\Controls\TextBox.cs (4)
479public SpellingError GetSpellingError(int charIndex) 485SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 509SpellingError spellingError = GetSpellingError(charIndex); 526SpellingError spellingError = GetSpellingError(charIndex);
System\Windows\Documents\Speller.cs (4)
110internal SpellingError GetError(ITextPointer position, LogicalDirection direction, bool forceEvaluation) 114SpellingError error; 171SpellingError spellingError = GetError(position, direction, false /* forceEvaluation */); 179internal IList GetSuggestionsForError(SpellingError error)
System\windows\Documents\TextEditor.cs (2)
413internal SpellingError GetSpellingErrorAtPosition(ITextPointer position, LogicalDirection direction) 419internal SpellingError GetSpellingErrorAtSelection()
System\windows\Documents\TextEditorContextMenu.cs (2)
176SpellingError spellingError = (contextMenu is EditorContextMenu) ? This.GetSpellingErrorAtSelection() : null; 480SpellingError spellingError;
System\windows\Documents\TextEditorSpelling.cs (6)
37internal static SpellingError GetSpellingErrorAtPosition(TextEditor This, ITextPointer position, LogicalDirection direction) 43internal static SpellingError GetSpellingErrorAtSelection(TextEditor This) 131SpellingError spellingError = GetSpellingErrorAtSelection(This); 181private static bool IsErrorAtNonMergeableInlineEdge(SpellingError spellingError, out ITextPointer textStart, out ITextPointer textEnd) 229SpellingError spellingError = GetSpellingErrorAtSelection(This); 246SpellingError spellingError = GetSpellingErrorAtSelection(This);