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