8 references to End
PresentationFramework (8)
System\Windows\Controls\RichTextBox.cs (1)
251return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.End);
System\Windows\Controls\TextBox.cs (1)
528return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.Start.Offset;
System\Windows\Documents\Speller.cs (1)
206ExpandToWordBreakAndContext(error.End, LogicalDirection.Forward, language, out contentEnd, out contextEnd);
System\windows\Documents\TextEditorContextMenu.cs (1)
182position = spellingError.End;
System\windows\Documents\TextEditorSpelling.cs (4)
153This.Selection.Select(spellingError.Start, spellingError.End); 186while (textStart.CompareTo(spellingError.End) < 0 && 191textEnd = spellingError.End.CreatePointer(); 199textStart.CompareTo(spellingError.End) == 0)