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