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