8 references to End
PresentationFramework (8)
src\Framework\System\Windows\Controls\RichTextBox.cs (1)
259return (spellingError == null) ? null : new TextRange(spellingError.Start, spellingError.End);
src\Framework\System\Windows\Controls\TextBox.cs (1)
555return (spellingError == null) ? 0 : spellingError.End.Offset - spellingError.Start.Offset;
src\Framework\System\Windows\Documents\Speller.cs (1)
217ExpandToWordBreakAndContext(error.End, LogicalDirection.Forward, language, out contentEnd, out contextEnd);
src\Framework\System\windows\Documents\TextEditorContextMenu.cs (1)
191position = spellingError.End;
src\Framework\System\windows\Documents\TextEditorSpelling.cs (4)
155This.Selection.Select(spellingError.Start, spellingError.End); 188while (textStart.CompareTo(spellingError.End) < 0 && 193textEnd = spellingError.End.CreatePointer(); 201textStart.CompareTo(spellingError.End) == 0)