1 instantiation of SpellingError
PresentationFramework (1)
src\Framework\System\Windows\Documents\Speller.cs (1)
134error = new SpellingError(this, start, end);
20 references to SpellingError
PresentationFramework (20)
src\Framework\System\Windows\Controls\RichTextBox.cs (2)
234public SpellingError GetSpellingError(TextPointer position) 257SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, position.LogicalDirection);
src\Framework\System\Windows\Controls\TextBox.cs (4)
504public SpellingError GetSpellingError(int charIndex) 512SpellingError spellingError = this.TextEditor.GetSpellingErrorAtPosition(position, LogicalDirection.Forward); 536SpellingError spellingError = GetSpellingError(charIndex); 553SpellingError spellingError = GetSpellingError(charIndex);
src\Framework\System\Windows\Documents\Speller.cs (4)
116internal SpellingError GetError(ITextPointer position, LogicalDirection direction, bool forceEvaluation) 120SpellingError error; 177SpellingError spellingError = GetError(position, direction, false /* forceEvaluation */); 190internal IList GetSuggestionsForError(SpellingError error)
src\Framework\System\windows\Documents\TextEditor.cs (2)
428internal SpellingError GetSpellingErrorAtPosition(ITextPointer position, LogicalDirection direction) 434internal SpellingError GetSpellingErrorAtSelection()
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (2)
185SpellingError spellingError = (contextMenu is EditorContextMenu) ? This.GetSpellingErrorAtSelection() : null; 506SpellingError spellingError;
src\Framework\System\windows\Documents\TextEditorSpelling.cs (6)
39internal static SpellingError GetSpellingErrorAtPosition(TextEditor This, ITextPointer position, LogicalDirection direction) 45internal static SpellingError GetSpellingErrorAtSelection(TextEditor This) 133SpellingError spellingError = GetSpellingErrorAtSelection(This); 183private static bool IsErrorAtNonMergeableInlineEdge(SpellingError spellingError, out ITextPointer textStart, out ITextPointer textEnd) 231SpellingError spellingError = GetSpellingErrorAtSelection(This); 248SpellingError spellingError = GetSpellingErrorAtSelection(This);