8 references to End
PresentationFramework (8)
System\Windows\Controls\RichTextBox.cs (1)
246return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.End);
System\Windows\Controls\TextBox.cs (1)
522return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.Start.Offset;
System\Windows\Documents\Speller.cs (1)
190ExpandToWordBreakAndContext(error.End, LogicalDirection.Forward, language, out ITextPointer contentEnd, out ITextPointer contextEnd);
System\windows\Documents\TextEditorContextMenu.cs (1)
179position = spellingError.End;
System\windows\Documents\TextEditorSpelling.cs (4)
151This.Selection.Select(spellingError.Start, spellingError.End); 184while (textStart.CompareTo(spellingError.End) < 0 && 189textEnd = spellingError.End.CreatePointer(); 197textStart.CompareTo(spellingError.End) == 0)